Package jakarta.enterprise.inject.se
Interface SeContainer
- 
 public interface SeContainer extends Instance<Object>, AutoCloseable Provides access to the current container in Java SE.SeContainer implements Instanceand therefore might be used to perform programmatic lookup. If no qualifier is passed toInstance.select(java.lang.annotation.Annotation...)method, the@Defaultqualifier is assumed.CDI Lite implementations are not required to provide support for CDI in Java SE. - Since:
- 2.0
- Author:
- Antoine Sabot-Durand, John D. Ament, Graeme Rocher
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface jakarta.enterprise.inject.InstanceInstance.Handle<T>
 
- 
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidclose()Shuts down this SeContainer instance when it is no longer in scope.default BeanContainergetBeanContainer()Get the CDIBeanContainerfor this container.BeanManagergetBeanManager()Get the CDI BeanManager for this containerbooleanisRunning()Check if the container is running or was shut down- 
Methods inherited from interface jakarta.enterprise.inject.Instancedestroy, getHandle, handles, handlesStream, isAmbiguous, isResolvable, isUnsatisfied, select, select, select, stream
 - 
Methods inherited from interface java.lang.IterableforEach, iterator, spliterator
 
- 
 
- 
- 
- 
Method Detail- 
closevoid close() Shuts down this SeContainer instance when it is no longer in scope. Implemented from AutoCloseable,- Specified by:
- closein interface- AutoCloseable
- Throws:
- IllegalStateException- if the container is already shutdown
 
 - 
isRunningboolean isRunning() Check if the container is running or was shut down- Returns:
- true if called before container shutdown
 
 - 
getBeanManagerBeanManager getBeanManager() Get the CDI BeanManager for this container- Returns:
- the BeanManager
- Throws:
- IllegalStateException- if called when the container is already shutdown
 
 - 
getBeanContainerdefault BeanContainer getBeanContainer() Get the CDIBeanContainerfor this container. Default implementation just forwards the call togetBeanManager().- Returns:
- the BeanContainer
- Since:
- 4.0
 
 
- 
 
-