Package javax.enterprise.inject.spi
Interface InjectionTargetFactory<T>
-
public interface InjectionTargetFactory<T>
A factory which is able to create container providedInjectionTarget
s.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InjectionTarget<T>
createInjectionTarget(Bean<T> bean)
Creates an InjectionTarget for the given Bean
-
-
-
Method Detail
-
createInjectionTarget
InjectionTarget<T> createInjectionTarget(Bean<T> bean)
Creates an InjectionTarget for the given Bean- Parameters:
bean
- the Bean ornull
if the InjectionTarget should not get managed by the container.
-
-