javax.interceptor
Annotation Type ExcludeDefaultInterceptors


@Target(value={TYPE,METHOD})
@Retention(value=RUNTIME)
public @interface ExcludeDefaultInterceptors

Used to exclude default interceptors for a target class or for a business method or timeout method of a target class.

 @ExcludeDefaultInterceptors
 @Interceptors(ValidationInterceptor.class)
 public class Order { ... }
 
 @ExcludeDefaultInterceptors
 public void updateOrder(Order order) { ... }