All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.interceptor.ExcludeDefaultInterceptors Maven / Gradle / Ivy

There is a newer version: 3.0.0.Alpha1
Show newest version
package javax.interceptor;

import static java.lang.annotation.ElementType.CONSTRUCTOR;
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;

/**
 * Exclude the invocation of default interceptors for a method.  This annotation applies to a method
 * that would otherwise be subject to interception.
 */
@Target({ TYPE, METHOD, CONSTRUCTOR })
@Retention(RUNTIME)
public @interface ExcludeDefaultInterceptors {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy