author | jwilhelm |
Thu, 22 Dec 2016 22:10:02 +0100 | |
changeset 42857 | b37629ea3943 |
parent 32251 | 7e6dc723daf3 |
permissions | -rw-r--r-- |
12009 | 1 |
/* |
31746
7573de6b8e46
8130753: Sync-up javadoc changes in jax-ws area - includes JAX-B API, JAX-WS API, SAAJ-API
mkos
parents:
30005
diff
changeset
|
2 |
* Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved. |
12009 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
24 |
*/ |
|
25 |
||
26 |
package javax.annotation; |
|
27 |
||
28 |
import java.lang.annotation.*; |
|
29 |
import static java.lang.annotation.ElementType.*; |
|
30 |
import static java.lang.annotation.RetentionPolicy.*; |
|
31 |
||
32 |
/** |
|
33 |
* The PostConstruct annotation is used on a method that needs to be executed |
|
34 |
* after dependency injection is done to perform any initialization. This |
|
35 |
* method MUST be invoked before the class is put into service. This |
|
36 |
* annotation MUST be supported on all classes that support dependency |
|
37 |
* injection. The method annotated with PostConstruct MUST be invoked even |
|
38 |
* if the class does not request any resources to be injected. Only one |
|
39 |
* method can be annotated with this annotation. The method on which the |
|
40 |
* PostConstruct annotation is applied MUST fulfill all of the following |
|
20590
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
41 |
* criteria: |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
42 |
* <ul> |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
43 |
* <li>The method MUST NOT have any parameters except in the case of |
16791 | 44 |
* interceptors in which case it takes an InvocationContext object as |
20590
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
45 |
* defined by the Interceptors specification.</li> |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
46 |
* <li>The method defined on an interceptor class MUST HAVE one of the |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
47 |
* following signatures: |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
48 |
* <p> |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
49 |
* void <METHOD>(InvocationContext) |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
50 |
* <p> |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
51 |
* Object <METHOD>(InvocationContext) throws Exception |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
52 |
* <p> |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
53 |
* <i>Note: A PostConstruct interceptor method must not throw application |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
54 |
* exceptions, but it may be declared to throw checked exceptions including |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
55 |
* the java.lang.Exception if the same interceptor method interposes on |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
56 |
* business or timeout methods in addition to lifecycle events. If a |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
57 |
* PostConstruct interceptor method returns a value, it is ignored by |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
58 |
* the container.</i> |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
59 |
* </li> |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
60 |
* <li>The method defined on a non-interceptor class MUST HAVE the |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
61 |
* following signature: |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
62 |
* <p> |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
63 |
* void <METHOD>() |
b3b34e4344ce
8025054: Update JAX-WS RI integration to 2.2.9-b130926.1035
mkos
parents:
16791
diff
changeset
|
64 |
* </li> |
16791 | 65 |
* <li>The method on which PostConstruct is applied MAY be public, protected, |
66 |
* package private or private.</li> |
|
67 |
* <li>The method MUST NOT be static except for the application client.</li> |
|
68 |
* <li>The method MAY be final.</li> |
|
69 |
* <li>If the method throws an unchecked exception the class MUST NOT be put into |
|
12009 | 70 |
* service except in the case of EJBs where the EJB can handle exceptions and |
16791 | 71 |
* even recover from them.</li></ul> |
25840 | 72 |
* |
12009 | 73 |
* @see javax.annotation.PreDestroy |
74 |
* @see javax.annotation.Resource |
|
25840 | 75 |
* @since 1.6, Common Annotations 1.0 |
12009 | 76 |
*/ |
77 |
@Documented |
|
78 |
@Retention (RUNTIME) |
|
79 |
@Target(METHOD) |
|
80 |
public @interface PostConstruct { |
|
81 |
} |