Annotation Type SkipInternalInterceptors
-
@Target({TYPE,METHOD}) @Retention(RUNTIME) public @interface SkipInternalInterceptors
This class is an annotation that can be applied to classes or methods to indicate that internal interceptors should not be processed byRequestInterceptors
. When this annotation is applied to a class,RequestInterceptors
will not process requests for all the methods within the class. When this annotation is applied to a method,RequestInterceptors
will not process requests only for that method.