01: /*
02: * JBoss, the OpenSource J2EE webOS
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07: package javax.interceptor;
08:
09: import static java.lang.annotation.ElementType.METHOD;
10: import static java.lang.annotation.ElementType.TYPE;
11: import static java.lang.annotation.RetentionPolicy.RUNTIME;
12:
13: import java.lang.annotation.Retention;
14: import java.lang.annotation.Target;
15:
16: /**
17: *
18: * @author <a href="kabir.khan@jboss.com">Kabir Khan</a>
19: * @version $Revision: 60233 $
20: */
21: @Target({TYPE,METHOD})
22: @Retention(RUNTIME)
23: public @interface ExcludeDefaultInterceptors {
24:
25: }
|