Uses of Interface
javax.enterprise.inject.spi.InjectionPoint
-
Packages that use InjectionPoint Package Description javax.enterprise.inject.spi The portable extension integration SPI.javax.enterprise.inject.spi.configurator -
-
Uses of InjectionPoint in javax.enterprise.inject.spi
Methods in javax.enterprise.inject.spi that return InjectionPoint Modifier and Type Method Description InjectionPoint
BeanManager. createInjectionPoint(AnnotatedField<?> field)
Obtains a container provided implementation ofInjectionPoint
for the givenAnnotatedField
.InjectionPoint
BeanManager. createInjectionPoint(AnnotatedParameter<?> parameter)
Obtains a container provided implementation ofInjectionPoint
for the givenAnnotatedParameter
.InjectionPoint
EventMetadata. getInjectionPoint()
Get theInjectionPoint
representing the injectedEvent
instance which fired the event, ornull
if it was fired fromBeanManager.fireEvent(Object, Annotation...)
;InjectionPoint
ProcessInjectionPoint. getInjectionPoint()
Methods in javax.enterprise.inject.spi that return types with arguments of type InjectionPoint Modifier and Type Method Description java.util.Set<InjectionPoint>
Bean. getInjectionPoints()
Obtains theInjectionPoint
objects representing injection points of the bean, that will be validated by the container at initialization time.java.util.Set<InjectionPoint>
Producer. getInjectionPoints()
Returns the set of allInjectionPoints
.Methods in javax.enterprise.inject.spi with parameters of type InjectionPoint Modifier and Type Method Description java.lang.Object
BeanManager. getInjectableReference(InjectionPoint ij, CreationalContext<?> ctx)
Obtains an injectable reference for a certain injection point.void
ProcessInjectionPoint. setInjectionPoint(InjectionPoint injectionPoint)
Replaces the InjectionPoint.void
BeanManager. validate(InjectionPoint injectionPoint)
Validate a certain injection point. -
Uses of InjectionPoint in javax.enterprise.inject.spi.configurator
Methods in javax.enterprise.inject.spi.configurator with parameters of type InjectionPoint Modifier and Type Method Description BeanConfigurator<T>
BeanConfigurator. addInjectionPoint(InjectionPoint injectionPoint)
Add an InjectionPoint to the configured beanBeanConfigurator<T>
BeanConfigurator. addInjectionPoints(InjectionPoint... injectionPoints)
Add InjectionPoints to the configured beanBeanConfigurator<T>
BeanConfigurator. injectionPoints(InjectionPoint... injectionPoints)
Replace InjectionPoints for the configured beanMethod parameters in javax.enterprise.inject.spi.configurator with type arguments of type InjectionPoint Modifier and Type Method Description BeanConfigurator<T>
BeanConfigurator. addInjectionPoints(java.util.Set<InjectionPoint> injectionPoints)
Add InjectionPoints to the configured beanBeanConfigurator<T>
BeanConfigurator. injectionPoints(java.util.Set<InjectionPoint> injectionPoints)
Replace InjectionPoints for the configured bean
-