Package javax.interceptor
Annotation Type InterceptorBinding
-
@Target(ANNOTATION_TYPE) @Retention(RUNTIME) @Documented public @interface InterceptorBindingSpecifies that an annotation type is an interceptor binding type. Interceptor bindings are used to specify the binding of an interceptor class to target classes and methods.The annotation type that is marked as a binding must be applied to an interceptor class (marked with the
@Interceptorannotation to associate that annotation with an interceptor. The annotation may then be applied instead of, or in addition to, the@Interceptorsannotation to specify what interceptors are attached to the class or method.The associated annotation type must be associated only with
TYPEs and/orMETHODs.