Index
All Classes and Interfaces|All Packages|Constant Field Values
A
- APPLICATION - Static variable in class jakarta.interceptor.Interceptor.Priority
-
Start of range for interceptors defined by applications.
- APPLICATION - Static variable in class javax.interceptor.Interceptor.Priority
-
Start of range for interceptors defined by applications.
- AroundConstruct - Annotation Interface in jakarta.interceptor
-
Designates an interceptor method that receives a callback when the target class constructor is invoked.
- AroundConstruct - Annotation Interface in javax.interceptor
-
Designates an interceptor method that receives a callback when the target class constructor is invoked.
- AroundInvoke - Annotation Interface in jakarta.interceptor
-
Defines an interceptor method that interposes on business methods.
- AroundInvoke - Annotation Interface in javax.interceptor
-
Defines an interceptor method that interposes on business methods.
- AroundTimeout - Annotation Interface in jakarta.interceptor
-
Defines an interceptor method that interposes on timeout methods.
- AroundTimeout - Annotation Interface in javax.interceptor
-
Defines an interceptor method that interposes on timeout methods.
- Associating an interceptor class with the target class - Search tag in package jakarta.interceptor
- Section
- Associating an interceptor class with the target class - Search tag in package javax.interceptor
- Section
D
- Default Interceptors - Search tag in package jakarta.interceptor
- Section
- Default Interceptors - Search tag in package javax.interceptor
- Section
E
- ExcludeClassInterceptors - Annotation Interface in jakarta.interceptor
-
Used to exclude class-level interceptors for the lifecycle callback method, business method, timeout method, or constructor to which it is applied.
- ExcludeClassInterceptors - Annotation Interface in javax.interceptor
-
Used to exclude class-level interceptors for the lifecycle callback method, business method, timeout method, or constructor to which it is applied.
- ExcludeDefaultInterceptors - Annotation Interface in jakarta.interceptor
-
Used to exclude default interceptors for a target class or for a lifecycle callback method, business method, timeout method, or constructor of a target class.
- ExcludeDefaultInterceptors - Annotation Interface in javax.interceptor
-
Used to exclude default interceptors for a target class or for a lifecycle callback method, business method, timeout method, or constructor of a target class.
G
- getConstructor() - Method in interface jakarta.interceptor.InvocationContext
-
Returns the constructor of the target class for which the
AroundConstruct
interceptor method was invoked. - getConstructor() - Method in interface javax.interceptor.InvocationContext
-
Returns the constructor of the target class for which the
AroundConstruct
interceptor method was invoked. - getContextData() - Method in interface jakarta.interceptor.InvocationContext
-
Enables an interceptor to retrieve or update the data associated with the invocation by another interceptor, business method, and/or webservices endpoint in the invocation chain.
- getContextData() - Method in interface javax.interceptor.InvocationContext
-
Enables an interceptor to retrieve or update the data associated with the invocation by another interceptor, business method, and/or webservices endpoint in the invocation chain.
- getMethod() - Method in interface jakarta.interceptor.InvocationContext
-
Returns the method of the target class for which the interceptor was invoked.
- getMethod() - Method in interface javax.interceptor.InvocationContext
-
Returns the method of the target class for which the interceptor was invoked.
- getParameters() - Method in interface jakarta.interceptor.InvocationContext
-
Returns the parameter values that will be passed to the method or constructor of the target class.
- getParameters() - Method in interface javax.interceptor.InvocationContext
-
Returns the parameter values that will be passed to the method or constructor of the target class.
- getTarget() - Method in interface jakarta.interceptor.InvocationContext
-
Returns the target instance.
- getTarget() - Method in interface javax.interceptor.InvocationContext
-
Returns the target instance.
- getTimer() - Method in interface jakarta.interceptor.InvocationContext
-
Returns the timer object associated with a timeout method invocation on the target class, or a null value for interceptor method types other than
AroundTimeout
. - getTimer() - Method in interface javax.interceptor.InvocationContext
-
Returns the timer object associated with a timeout method invocation on the target class, or a null value for interceptor method types other than
AroundTimeout
.
I
- Interceptor - Annotation Interface in jakarta.interceptor
-
Specifies that a class is an interceptor.
- Interceptor - Annotation Interface in javax.interceptor
-
Specifies that a class is an interceptor.
- Interceptor.Priority - Class in jakarta.interceptor
-
Priorities that define the order in which interceptors are invoked.
- Interceptor.Priority - Class in javax.interceptor
-
Priorities that define the order in which interceptors are invoked.
- InterceptorBinding - Annotation Interface in jakarta.interceptor
-
Specifies that an annotation type is an interceptor binding type.
- InterceptorBinding - Annotation Interface in javax.interceptor
-
Specifies that an annotation type is an interceptor binding type.
- Interceptor classes - Search tag in package jakarta.interceptor
- Section
- Interceptor classes - Search tag in package javax.interceptor
- Section
- Interceptor lifecycle - Search tag in package jakarta.interceptor
- Section
- Interceptor lifecycle - Search tag in package javax.interceptor
- Section
- Interceptor methods - Search tag in package jakarta.interceptor
- Section
- Interceptor methods - Search tag in package javax.interceptor
- Section
- Interceptors - Annotation Interface in jakarta.interceptor
-
Declares an ordered list of interceptors for a target class, or for a method or a constructor of a target class.
- Interceptors - Annotation Interface in javax.interceptor
-
Declares an ordered list of interceptors for a target class, or for a method or a constructor of a target class.
- Interceptors for lifecycle callbacks - Search tag in package jakarta.interceptor
- Section
- Interceptors for lifecycle callbacks - Search tag in package javax.interceptor
- Section
- InvocationContext - Interface in jakarta.interceptor
-
Exposes contextual information about the intercepted invocation and operations that enable interceptor methods to control the behavior of the invocation chain.
- InvocationContext - Interface in javax.interceptor
-
Exposes contextual information about the intercepted invocation and operations that enable interceptor methods to control the behavior of the invocation chain.
J
- jakarta.interceptor - package jakarta.interceptor
-
Contains annotations and interfaces for defining interceptor methods and interceptor classes, and for binding interceptor classes to target classes.
- javax.interceptor - package javax.interceptor
-
Contains annotations and interfaces for defining interceptor methods and interceptor classes, and for binding interceptor classes to target classes.
L
- LIBRARY_AFTER - Static variable in class jakarta.interceptor.Interceptor.Priority
-
Start of range for late interceptors defined by extension libraries.
- LIBRARY_AFTER - Static variable in class javax.interceptor.Interceptor.Priority
-
Start of range for late interceptors defined by extension libraries.
- LIBRARY_BEFORE - Static variable in class jakarta.interceptor.Interceptor.Priority
-
Start of range for early interceptors defined by extension libraries.
- LIBRARY_BEFORE - Static variable in class javax.interceptor.Interceptor.Priority
-
Start of range for early interceptors defined by extension libraries.
P
- PLATFORM_AFTER - Static variable in class jakarta.interceptor.Interceptor.Priority
-
Start of range for late interceptors defined by platform specifications.
- PLATFORM_AFTER - Static variable in class javax.interceptor.Interceptor.Priority
-
Start of range for late interceptors defined by platform specifications.
- PLATFORM_BEFORE - Static variable in class jakarta.interceptor.Interceptor.Priority
-
Start of range for early interceptors defined by platform specifications.
- PLATFORM_BEFORE - Static variable in class javax.interceptor.Interceptor.Priority
-
Start of range for early interceptors defined by platform specifications.
- Priority() - Constructor for class jakarta.interceptor.Interceptor.Priority
- Priority() - Constructor for class javax.interceptor.Interceptor.Priority
- proceed() - Method in interface jakarta.interceptor.InvocationContext
-
Proceed to the next interceptor in the interceptor chain.
- proceed() - Method in interface javax.interceptor.InvocationContext
-
Proceed to the next interceptor in the interceptor chain.
S
- setParameters(Object[]) - Method in interface jakarta.interceptor.InvocationContext
-
Sets the parameter values that will be passed to the method or constructor of the target class.
- setParameters(Object[]) - Method in interface javax.interceptor.InvocationContext
-
Sets the parameter values that will be passed to the method or constructor of the target class.
V
- value() - Element in annotation interface jakarta.interceptor.Interceptors
-
An ordered list of interceptors.
- value() - Element in annotation interface javax.interceptor.Interceptors
-
An ordered list of interceptors.
All Classes and Interfaces|All Packages|Constant Field Values