Uses of Interface
javax.enterprise.inject.spi.BeanAttributes
-
Packages that use BeanAttributes Package Description javax.enterprise.inject.spi -
-
Uses of BeanAttributes in javax.enterprise.inject.spi
Subinterfaces of BeanAttributes in javax.enterprise.inject.spi Modifier and Type Interface Description interface
Bean<T>
Reprensts bean instances that are contextual and injectable by the container.interface
Decorator<T>
Decorator Bean.interface
Interceptor<T>
A Bean for creating and using an interceptor.Methods in javax.enterprise.inject.spi that return BeanAttributes Modifier and Type Method Description BeanAttributes<?>
BeanManager. createBeanAttributes(AnnotatedMember<?> member)
This method creates bean meta information from a givenAnnotatedMember
.<T> BeanAttributes<T>
BeanManager. createBeanAttributes(AnnotatedType<T> type)
This method creates bean meta information from a givenAnnotatedType
.BeanAttributes<T>
ProcessBeanAttributes. getBeanAttributes()
Methods in javax.enterprise.inject.spi with parameters of type BeanAttributes Modifier and Type Method Description <T> Bean<T>
BeanManager. createBean(BeanAttributes<T> attributes, java.lang.Class<T> beanClass, InjectionTargetFactory<T> injectionTargetFactory)
Create aBean
from the given bean attributes.<T,X>
Bean<T>BeanManager. createBean(BeanAttributes<T> attributes, java.lang.Class<X> beanClass, ProducerFactory<X> producerFactory)
Create aBean
from the given bean attributes.void
ProcessBeanAttributes. setBeanAttributes(BeanAttributes<T> beanAttributes)
Use the given BeanAttributes to later create theBean
from it.
-