| Package | Description |
|---|---|
| javax.enterprise.context.spi | |
| javax.enterprise.inject.spi |
Java Dependency Injection programmatic APIs.
|
| Modifier and Type | Method and Description |
|---|---|
<T> T |
Context.get(Contextual<T> bean)
Returns a instance of a bean, creating if the bean is not already
available in the context.
|
<T> T |
Context.get(Contextual<T> bean,
CreationalContext<T> creationalContext)
Internal SPI method to create a new instance of a bean, when given
a creational context.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
Bean<T>
Internal implementation for a Bean
|
interface |
Decorator<T>
Internal implementation for a Decorator
|
interface |
Interceptor<T>
Metadata for for an interceptor
|
| Modifier and Type | Method and Description |
|---|---|
<T> CreationalContext<T> |
BeanManager.createCreationalContext(Contextual<T> contextual)
Creates a new CreationalContext for instantiating a bean.
|