/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package javax.interceptor; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.ElementType.TYPE; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Retention; import java.lang.annotation.Target; /** * * @author Kabir Khan * @version $Revision: 60233 $ */ @Target({TYPE, METHOD}) @Retention(RUNTIME) public @interface ExcludeDefaultInterceptors { }