Package javax.enterprise.context
-
Interface Summary Interface Description Conversation Defines the conversation instance contract for using in theConversationScoped
webbeans components. -
Exception Summary Exception Description BusyConversationException A long running conversation must only be used by one request at the same time! If a parallel access to a long running conversation gets detected, this very Exception will be thrown for the new request and the 2nd request will get a fresh Conversation assigned.ContextException Base class for all CDI problems related toContext
s.ContextNotActiveException This Exception is thrown ifContext.get(javax.enterprise.context.spi.Contextual)
orContext.get(javax.enterprise.context.spi.Contextual, javax.enterprise.context.spi.CreationalContext)
is called on a Context which is not 'active' in respect to the current thread.NonexistentConversationException If a long running conversation cannot be restored, OWB will assign a fresh conversation and throws this very Exception. -
Annotation Types Summary Annotation Type Description ApplicationScoped Defines the application scoped type.ConversationScoped Conversation scope type.Dependent An @#064;Dependent scoped Contextual instance shares it's lifecycle with the Contextual Instance it got injected to.Destroyed Qualifier for events which get fired when a Context ends.Initialized Qualifier for events which get fired when a Context starts.NormalScope Defines CDI scopes which have a well-defined lifecycle.RequestScoped Defines the request scope.SessionScoped Session scoped.