Package org.jboss.weld.context.api
Interface ContextualInstance<T>
public interface ContextualInstance<T>
Represents a contextual instance of a given type. This is an abstraction on top of the actual bean instance stored in each
context. It glues together the actual instance with its
CreationalContext and Contextual- Author:
- Matej Novotny
-
Method Summary
Modifier and TypeMethodDescription
-
Method Details
-
getInstance
T getInstance() -
getCreationalContext
CreationalContext<T> getCreationalContext() -
getContextual
Contextual<T> getContextual()
-