javax.interceptor
Annotation Type Interceptors
@Target(value={TYPE,METHOD})
@Retention(value=RUNTIME)
public @interface Interceptors
Declares an ordered list of interceptors for a target class or
method of a target class.
@Interceptors(ValidationInterceptor.class)
public class Order { ... }
@Interceptors({ValidationInterceptor.class, SecurityInterceptor.class})
public void updateOrder(Order order) { ... }
Only method interception or timeout method interception may be specified
by a method-level @Interceptors declaration.
- See Also:
ExcludeClassInterceptors
,
ExcludeDefaultInterceptors
Required Element Summary |
java.lang.Class[] |
value
|
value
public abstract java.lang.Class[] value