public interface HttpConversationContext extends BoundContext<HttpServletRequest>, ConversationContext
Modifier and Type | Method and Description |
---|---|
boolean |
destroy(HttpSession session)
If the context is not currently associated with a
HttpServletRequest , then the context will be associated with
the specified HttpSession (for this thread), activated, destroyed, and then deactivated. |
associate, dissociate
activate, activate, generateConversationId, getConcurrentAccessTimeout, getConversation, getConversations, getCurrentConversation, getDefaultTimeout, getParameterName, invalidate, setConcurrentAccessTimeout, setDefaultTimeout, setParameterName
deactivate
destroy
boolean destroy(HttpSession session)
If the context is not currently associated with a HttpServletRequest
, then the context will be associated with
the specified HttpSession
(for this thread), activated, destroyed, and then deactivated. Any conversations
associated with the context will also be destroyed.
If the context is already associated with a HttpServletRequest
then this call will detach the context from the
underlying Http Session, and mark the context for destruction when the request is destroyed.
This will cause any transient conversations, and any long running conversations associated with the session, to be destroyed.
session
- the HttpSession
in which to store the bean instancesCopyright © 2017 JBoss by Red Hat. All rights reserved.