Uses of Interface
javax.enterprise.context.spi.CreationalContext
-
Packages that use CreationalContext Package Description javax.enterprise.context.spi javax.enterprise.inject.spi -
-
Uses of CreationalContext in javax.enterprise.context.spi
Methods in javax.enterprise.context.spi with parameters of type CreationalContext Modifier and Type Method Description T
Contextual. create(CreationalContext<T> context)
Creates and returns a new instance of the webbeans component.void
Contextual. destroy(T instance, CreationalContext<T> context)
Destroys the instance.<T> T
Context. get(Contextual<T> component, CreationalContext<T> creationalContext)
If the context is not active, throwsContextNotActiveException
. -
Uses of CreationalContext in javax.enterprise.inject.spi
Fields in javax.enterprise.inject.spi declared as CreationalContext Modifier and Type Field Description private CreationalContext<T>
Unmanaged.UnmanagedInstance. creationalContext
Methods in javax.enterprise.inject.spi that return CreationalContext Modifier and Type Method Description <T> CreationalContext<T>
BeanManager. createCreationalContext(Contextual<T> contextual)
Returns a new creational context implementation.Methods in javax.enterprise.inject.spi with parameters of type CreationalContext Modifier and Type Method Description java.lang.Object
BeanManager. getInjectableReference(InjectionPoint injectionPoint, CreationalContext<?> ctx)
Gets injection point bean reference.java.lang.Object
BeanManager. getReference(Bean<?> bean, java.lang.reflect.Type beanType, CreationalContext<?> ctx)
Returns a bean instance reference for the given bean.void
InjectionTarget. inject(T instance, CreationalContext<T> ctx)
Performs dependency injection upon the given object.T
Producer. produce(CreationalContext<T> creationalContext)
Its result depends on bean type.
-