Uses of Interface
jakarta.enterprise.inject.spi.InjectionPoint
-
Packages that use InjectionPoint Package Description jakarta.enterprise.inject.spi The portable extension integration SPI.jakarta.enterprise.inject.spi.configurator -
-
Uses of InjectionPoint in jakarta.enterprise.inject.spi
Methods in jakarta.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 eventInjectionPoint
ProcessInjectionPoint. getInjectionPoint()
Methods in jakarta.enterprise.inject.spi that return types with arguments of type InjectionPoint Modifier and Type Method Description Set<InjectionPoint>
Bean. getInjectionPoints()
Obtains theInjectionPoint
objects representing injection points of the bean, that will be validated by the container at initialization time.Set<InjectionPoint>
Producer. getInjectionPoints()
Returns the set of allInjectionPoints
.Methods in jakarta.enterprise.inject.spi with parameters of type InjectionPoint Modifier and Type Method Description 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 jakarta.enterprise.inject.spi.configurator
Methods in jakarta.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 jakarta.enterprise.inject.spi.configurator with type arguments of type InjectionPoint Modifier and Type Method Description BeanConfigurator<T>
BeanConfigurator. addInjectionPoints(Set<InjectionPoint> injectionPoints)
Add InjectionPoints to the configured beanBeanConfigurator<T>
BeanConfigurator. injectionPoints(Set<InjectionPoint> injectionPoints)
Replace InjectionPoints for the configured bean
-