Uses of Interface
jakarta.enterprise.context.spi.Contextual
-
Packages that use Contextual Package Description jakarta.enterprise.context.spi The custom context SPI.jakarta.enterprise.inject.spi The portable extension integration SPI. -
-
Uses of Contextual in jakarta.enterprise.context.spi
Methods in jakarta.enterprise.context.spi with parameters of type Contextual Modifier and Type Method Description void
AlterableContext. destroy(Contextual<?> contextual)
Destroy the existing contextual instance.<T> T
Context. get(Contextual<T> contextual)
Return an existing instance of a certain contextual type or a null value.<T> T
Context. get(Contextual<T> contextual, CreationalContext<T> creationalContext)
Return an existing instance of certain contextual type or create a new instance by callingcreate(CreationalContext)
and return the new instance. -
Uses of Contextual in jakarta.enterprise.inject.spi
Subinterfaces of Contextual in jakarta.enterprise.inject.spi Modifier and Type Interface Description interface
Bean<T>
Represents an enabled bean.interface
Decorator<T>
Represents an enabled decorator.interface
Interceptor<T>
Represents an enabled interceptor.Methods in jakarta.enterprise.inject.spi with parameters of type Contextual Modifier and Type Method Description <T> CreationalContext<T>
BeanContainer. createCreationalContext(Contextual<T> contextual)
Obtain an instance of aCreationalContext
for the given contextual type, or for a non-contextual object.
-