
javax.enterprise.inject.spi.BeanAttributes Maven / Gradle / Ivy
package javax.enterprise.inject.spi;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.Set;
/**
* The BeanAttributes interface exposes the basic attributes of a bean.
*
* @author Pete Muir
*
* @param the class of the bean instance
*/
public interface BeanAttributes {
/**
* Obtains the {@linkplain javax.enterprise.inject bean types} of the bean.
*
* @return the {@linkplain javax.enterprise.inject bean types}
*/
public abstract Set getTypes();
/**
* Obtains the {@linkplain javax.inject.Qualifier qualifiers} of the bean.
*
* @return the {@linkplain javax.inject.Qualifier qualifiers}
*/
public abstract Set getQualifiers();
/**
* Obtains the {@linkplain javax.enterprise.context scope} of the bean.
*
* @return the {@linkplain javax.enterprise.context scope}
*/
public abstract Class extends Annotation> getScope();
/**
* Obtains the {@linkplain javax.enterprise.inject EL name} of a bean, if it has one.
*
* @return the {@linkplain javax.enterprise.inject EL name}
*/
public abstract String getName();
/**
* Obtains the {@linkplain javax.enterprise.inject.Stereotype stereotypes} of the bean.
*
* @return the set of {@linkplain javax.enterprise.inject.Stereotype stereotypes}
*/
public abstract Set> getStereotypes();
/**
* Determines if the bean is an {@linkplain javax.enterprise.inject.Alternative alternative}.
*
* @return true if the bean is an {@linkplain javax.enterprise.inject.Alternative alternative}, and false
* otherwise.
*/
public abstract boolean isAlternative();
/**
* Determines if {@link javax.enterprise.context.spi.Contextual#create(CreationalContext)} sometimes return a null value.
*
* @return true if the {@code create()} method may return a null value, and false otherwise
*/
public abstract boolean isNullable();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy