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

javax.interceptor.ExcludeClassInterceptors Maven / Gradle / Ivy

Go to download

This jar bundles all the bits of Weld and CDI required for running in a Servlet container.

There is a newer version: 6.0.0.Beta4
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.RetentionPolicy.RUNTIME;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy