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.RetentionPolicy.RUNTIME;
11:
12: import java.lang.annotation.Retention;
13: import java.lang.annotation.Target;
14:
15: /**
16: *
17: * @author <a href="kabir.khan@jboss.com">Kabir Khan</a>
18: * @version $Revision: 60233 $
19: */
20: @Target({METHOD})
21: @Retention(RUNTIME)
22: public @interface ExcludeClassInterceptors {
23:
24: }
|