java.lang.Object
jakarta.enterprise.inject.spi.Unmanaged.UnmanagedInstance<T>
- 
Method Details- 
get
- 
produceCreate the instance- Returns:
- self
- Throws:
- IllegalStateException- if produce() is called on an already produced instance
- IllegalStateException- if produce() is called on an instance that has already been disposed
 
- 
injectInject the instance- Returns:
- self
- Throws:
- IllegalStateException- if inject() is called before produce() is called
- IllegalStateException- if inject() is called on an instance that has already been disposed
 
- 
postConstructCall the @PostConstruct callback- Returns:
- self
- Throws:
- IllegalStateException- if postConstruct() is called before produce() is called
- IllegalStateException- if postConstruct() is called on an instance that has already been disposed
 
- 
preDestroyCall the @PreDestroy callback- Returns:
- self
- Throws:
- IllegalStateException- if preDestroy() is called before produce() is called
- IllegalStateException- if preDestroy() is called on an instance that has already been disposed
 
- 
disposeDispose of the instance, doing any necessary cleanup- Returns:
- self
- Throws:
- IllegalStateException- if dispose() is called before produce() is called
- IllegalStateException- if dispose() is called on an instance that has already been disposed
 
 
-