Package | Description |
---|---|
javax.enterprise.inject.spi |
The portable extension integration SPI.
|
javax.enterprise.inject.spi.configurator |
Modifier and Type | Method and Description |
---|---|
BeanAttributesConfigurator<T> |
ProcessBeanAttributes.configureBeanAttributes()
returns a
BeanAttributesConfigurator initialized with the BeanAttributes processed by this event
to configure a new BeanAttributes that will replace the original one at the end of the observer invocation. |
Modifier and Type | Method and Description |
---|---|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.addQualifier(java.lang.annotation.Annotation qualifier)
Add a qualifier to the configured bean
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.addQualifiers(java.lang.annotation.Annotation... qualifiers)
Add qualifiers to the bean.
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.addQualifiers(java.util.Set<java.lang.annotation.Annotation> qualifiers)
Add qualifiers to the bean.
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.addStereotype(java.lang.Class<? extends java.lang.annotation.Annotation> stereotype)
Add a stereotype to the configured bean
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.addStereotypes(java.util.Set<java.lang.Class<? extends java.lang.annotation.Annotation>> stereotypes)
Add stereotypes to the configured bean
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.addTransitiveTypeClosure(java.lang.reflect.Type type)
Adds an unrestricted set of bean types for the given type as if it represented a bean class of a managed bean.
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.addType(java.lang.reflect.Type type)
Add a type to the bean types
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.addType(TypeLiteral<?> typeLiteral)
Add a type to the bean types
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.addTypes(java.util.Set<java.lang.reflect.Type> types)
Add types to the bean types
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.addTypes(java.lang.reflect.Type... types)
Add types to the bean types
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.alternative(boolean value)
Change the alternative status of the configured bean.
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.name(java.lang.String name)
Set the name of the configured bean
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.qualifiers(java.lang.annotation.Annotation... qualifiers)
Replace all qualifiers.
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.qualifiers(java.util.Set<java.lang.annotation.Annotation> qualifiers)
Replace all qualifiers.
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.scope(java.lang.Class<? extends java.lang.annotation.Annotation> scope)
Replace Bean scope
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.stereotypes(java.util.Set<java.lang.Class<? extends java.lang.annotation.Annotation>> stereotypes)
Replace stereotypes on the configured bean
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.types(java.util.Set<java.lang.reflect.Type> types)
Replace bean types
|
BeanAttributesConfigurator<T> |
BeanAttributesConfigurator.types(java.lang.reflect.Type... types)
Replace bean types
|