javax.enterprise.inject.spi.builder.InjectionPointConfigurator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdi-api Show documentation
Show all versions of cdi-api Show documentation
APIs for CDI (Contexts and Dependency Injection for Java EE)
/*
* JBoss, Home of Professional Open Source
* Copyright 2016, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package javax.enterprise.inject.spi.builder;
import javax.enterprise.inject.spi.AnnotatedField;
import javax.enterprise.inject.spi.AnnotatedParameter;
import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.InjectionPoint;
import javax.enterprise.inject.spi.ProcessInjectionPoint;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.lang.reflect.Parameter;
import java.lang.reflect.Type;
import java.util.Set;
/**
* This API is an helper to configure a new {@link InjectionPoint} instance.
* CDI container must provides an implementation of this interface.
*
* This builder is not thread safe and shall not be used concurrently.
*
* @see ProcessInjectionPoint#configureInjectionPoint()
* @author Antoine Sabot-Durand
* @since 2.0
*/
public interface InjectionPointConfigurator {
/**
* Read the InjectionPoint information from the given {@link Field}.
* All relevant information is overwritten.
*
* @param field defining the InjectionPoint.
* @return self
*/
InjectionPointConfigurator read(Field field);
/**
* Read the InjectionPoint information from the given {@link Parameter}.
* All relevant information is overwritten.
*
* @param param the parameter defining the InjectionPoint
* @return self
*/
InjectionPointConfigurator read(Parameter param);
/**
* Read the InjectionPoint information from the given {@link AnnotatedField}.
* All relevant information is overwritten.
*
* @param field defining the InjectionPoint
* @return self
*/
InjectionPointConfigurator read(AnnotatedField> field);
/**
* Read the InjectionPoint information from the given {@link AnnotatedParameter}.
* All relevant information is overwritten.
*
* @param param defining the InjectionPoint
* @return self
*/
InjectionPointConfigurator read(AnnotatedParameter> param);
/**
* Read the InjectionPoint information from the given {@link InjectionPoint}.
* All relevant information is overwritten.
*
* @param injectionPoint the InjectionPoint to get information from
* @return self
*/
InjectionPointConfigurator read(InjectionPoint injectionPoint);
/**
* Set the required {@link Type} (that will be used during typesafe resolution)
* of the InjectionPoint to build.
*
* @param requiredType for the InjectionPoint to build
* @return self
*/
InjectionPointConfigurator type(Type requiredType);
/**
*
* Add the qualifier to the InjectionPoint to build
*
* @param qualifier the qualifier to add
* @return self
*/
InjectionPointConfigurator addQualifier(Annotation qualifier);
/**
*
* Add all the qualifiers to the InjectionPoint to build
*
* @param qualifiers a varargs or array of qualifiers to add
* @return self
*/
InjectionPointConfigurator addQualifiers(Annotation... qualifiers);
/**
*
* Add all the qualifiers to the InjectionPoint to build
*
* @param qualifiers a Set of qualifiers to add
* @return self
*/
InjectionPointConfigurator addQualifiers(Set qualifiers);
/**
* Replace all qualifiers.
*
* @param qualifiers a varargs or array of qualifiers to replace to existing ones
* @return self
*/
InjectionPointConfigurator qualifiers(Annotation... qualifiers);
/**
* Replace all qualifiers.
*
* @param qualifiers a Set of qualifiers to replace to existing ones
* @return self
*/
InjectionPointConfigurator qualifiers(Set qualifiers);
/**
* Set the {@link javax.enterprise.inject.spi.Bean} object representing the bean that defines the injection point. If the
* injection point does not belong to a bean, return a null value.
*
* @param bean the bean for this configured InjectionPoint
* @return self
*/
InjectionPointConfigurator bean(Bean> bean);
/**
*
* Change the delegate status of the built InjectionPoint.
* By default the InjectionPoint is not a delegate one.
*
* @param delegate boolean to define or undefine the delegate nature of the configured InjectionPoint
* @return self
*/
InjectionPointConfigurator delegate(boolean delegate);
/**
*
* Change the transient status of the built InjectionPoint.
* By default the InjectionPoint is not transient.
*
* @param trans boolean to define or undefine the transient nature of the configured InjectionPoint
* @return self
*/
InjectionPointConfigurator transientField(boolean trans);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy