Package | Description |
---|---|
javax.enterprise.inject.spi |
The portable extension integration SPI.
|
javax.enterprise.inject.spi.configurator |
Modifier and Type | Method and Description |
---|---|
InjectionPointConfigurator |
ProcessInjectionPoint.configureInjectionPoint()
Returns an
InjectionPointConfigurator initialized with the InjectionPoint processed by this event
to configure a new InjectionPoint that will replace the original one at the end of the observer invocation. |
Modifier and Type | Method and Description |
---|---|
InjectionPointConfigurator |
InjectionPointConfigurator.addQualifier(java.lang.annotation.Annotation qualifier)
Add the qualifier to the InjectionPoint to build
|
InjectionPointConfigurator |
InjectionPointConfigurator.addQualifiers(java.lang.annotation.Annotation... qualifiers)
Add all the qualifiers to the InjectionPoint to build
|
InjectionPointConfigurator |
InjectionPointConfigurator.addQualifiers(java.util.Set<java.lang.annotation.Annotation> qualifiers)
Add all the qualifiers to the InjectionPoint to build
|
InjectionPointConfigurator |
InjectionPointConfigurator.delegate(boolean delegate)
Change the delegate status of the built InjectionPoint.
|
InjectionPointConfigurator |
InjectionPointConfigurator.qualifiers(java.lang.annotation.Annotation... qualifiers)
Replace all qualifiers.
|
InjectionPointConfigurator |
InjectionPointConfigurator.qualifiers(java.util.Set<java.lang.annotation.Annotation> qualifiers)
Replace all qualifiers.
|
InjectionPointConfigurator |
InjectionPointConfigurator.transientField(boolean trans)
Change the transient status of the built InjectionPoint.
|
InjectionPointConfigurator |
InjectionPointConfigurator.type(java.lang.reflect.Type requiredType)
Set the required
Type (that will be used during typesafe resolution)
of the InjectionPoint to build. |