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

jakarta.enterprise.inject.build.compatible.spi.MetaAnnotations Maven / Gradle / Ivy

package jakarta.enterprise.inject.build.compatible.spi;

import jakarta.enterprise.context.spi.AlterableContext;

import java.lang.annotation.Annotation;
import java.util.function.Consumer;

/**
 * Allows registering custom CDI meta-annotations: qualifiers, interceptor bindings,
 * stereotypes, and scopes. When registering a custom scope, a context class must
 * also be provided.
 *
 * @since 4.0
 */
public interface MetaAnnotations {
    /**
     * Registers {@code annotation} as a qualifier annotation. Only makes sense if the annotation
     * is not meta-annotated {@code @Qualifier}.
     * 

* Returns a {@linkplain ClassConfig class configurator} object that allows transforming meta-annotations * on the {@code annotation}. * * @param annotation annotation type * @return the {@linkplain ClassConfig class configurator}, never {@code null} */ ClassConfig addQualifier(Class annotation); /** * Registers {@code annotation} as an interceptor binding annotation. Only makes sense if the annotation * is not meta-annotated {@code @InterceptorBinding}. *

* Returns a {@linkplain ClassConfig class configurator} object that allows transforming meta-annotations * on the {@code annotation}. * * @param annotation annotation type * @return the {@linkplain ClassConfig class configurator}, never {@code null} */ ClassConfig addInterceptorBinding(Class annotation); /** * Registers {@code annotation} as a stereotype annotation. Only makes sense if the annotation * is not meta-annotated {@code @Stereotype}. *

* Returns a {@linkplain ClassConfig class configurator} object that allows transforming meta-annotations * on the {@code annotation}. * * @param annotation annotation type * @return the {@linkplain ClassConfig class configurator}, never {@code null} */ ClassConfig addStereotype(Class annotation); /** * Registers custom context for given {@code scopeAnnotation} and given {@code contextClass}. * CDI container will create an instance of the context class once to obtain the context object. * The context class must be {@code public} and have a {@code public} zero-parameter constructor; * it must not be a bean. *

* Whether the scope is normal is discovered from the scope annotation. This means that the scope * annotation must be meta-annotated either {@link jakarta.enterprise.context.NormalScope @NormalScope} * or {@link jakarta.inject.Scope @Scope}. * * @param scopeAnnotation the scope annotation type, must not be {@code null} * @param contextClass the context class, must not be {@code null} * @throws IllegalArgumentException if the {@code scopeAnnotation} is not meta-annotated {@code @NormalScope} * or {@code @Scope} */ void addContext(Class scopeAnnotation, Class contextClass); /** * Registers custom context for given {@code scopeAnnotation} and given {@code contextClass}. * CDI container will create an instance of the context class once to obtain the context object. * The context class must be {@code public} and have a {@code public} zero-parameter constructor; * it must not be a bean. *

* The {@code isNormal} parameter determines whether the scope is a normal scope or a pseudo-scope. * * @param scopeAnnotation the scope annotation type, must not be {@code null} * @param isNormal whether the scope is normal * @param contextClass the context class, must not be {@code null} */ void addContext(Class scopeAnnotation, boolean isNormal, Class contextClass); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy