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

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

There is a newer version: 4.1.0
Show newest version
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 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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy