jakarta.enterprise.inject.build.compatible.spi.MethodConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jakarta.enterprise.cdi-api Show documentation
Show all versions of jakarta.enterprise.cdi-api Show documentation
APIs for CDI (Contexts and Dependency Injection for Java)
package jakarta.enterprise.inject.build.compatible.spi;
import jakarta.enterprise.lang.model.AnnotationInfo;
import jakarta.enterprise.lang.model.declarations.MethodInfo;
import java.lang.annotation.Annotation;
import java.util.List;
import java.util.function.Predicate;
/**
* Allows adding annotations to and removing annotations from a method.
* Note that the method is not physically altered, the modifications
* are only seen by the CDI container.
*
* @see Enhancement
* @since 4.0
*/
public interface MethodConfig extends DeclarationConfig {
/**
* Returns the {@link MethodInfo} corresponding to this transformed method.
*
* @return the {@link MethodInfo} corresponding to this transformed method, never {@code null}
*/
@Override
MethodInfo info();
/**
* Adds a marker annotation of given type to this method.
* Does not allow configuring annotation members.
*
* @param annotationType the annotation type, must not be {@code null}
* @return this configurator object, to allow fluent usage
*/
@Override
MethodConfig addAnnotation(Class extends Annotation> annotationType);
/**
* Adds given annotation to this method. The {@link AnnotationInfo} can be obtained
* from an annotation target, or constructed from scratch using {@link AnnotationBuilder}.
*
* @param annotation the annotation to add to this method, must not be {@code null}
* @return this configurator object, to allow fluent usage
*/
@Override
MethodConfig addAnnotation(AnnotationInfo annotation);
/**
* Adds given annotation to this method. The annotation instance is typically
* a subclass of {@link jakarta.enterprise.util.AnnotationLiteral AnnotationLiteral}.
*
* @param annotation the annotation to add to this method, must not be {@code null}
* @return this configurator object, to allow fluent usage
*/
@Override
MethodConfig addAnnotation(Annotation annotation);
/**
* Removes all annotations matching given predicate from this method.
*
* @param predicate an annotation predicate, must not be {@code null}
* @return this configurator object, to allow fluent usage
*/
@Override
MethodConfig removeAnnotation(Predicate predicate);
/**
* Removes all annotations from this method.
*
* @return this configurator object, to allow fluent usage
*/
@Override
MethodConfig removeAllAnnotations();
/**
* Returns a list of {@link ParameterConfig} objects for each parameter of this method.
*
* @return immutable list of {@link ParameterConfig} objects, never {@code null}
*/
List parameters();
}