Uses of Interface
com.tangosol.coherence.servlet.HttpSessionModel
-
Packages that use HttpSessionModel Package Description com.tangosol.coherence.servlet Contains classes related to the HTTP Session Replication Module.com.tangosol.coherence.servlet.api23 Contains classes related to the HTTP Session Replication Module that are specific to the Servlet 2.3 specification and higher. -
-
Uses of HttpSessionModel in com.tangosol.coherence.servlet
Classes in com.tangosol.coherence.servlet that implement HttpSessionModel Modifier and Type Class Description classAbstractHttpSessionModelAn abstract base class from which implementations of HttpSessionModel can be more easily built.classMonolithicHttpSessionModelThis is an implementation of HttpSessionModel that manages its attribute state in a single ('monolithic') serializable unit, allowing session attributes to safely form graphs while avoiding duplication of objects, yet not being able to optimize attribute serialization and deserialization as a result.classSplitHttpSessionModelThis is an implementation of HttpSessionModel that manages most of its state in a single serializable unit, but splits out its large attributes -- if any -- into separately managed units.classTraditionalHttpSessionModelAn implementation of HttpSessionModel that is managed as a single unit, but optimizes the management of individual attributes within a session for purposes of serialization and deserialization.Methods in com.tangosol.coherence.servlet that return HttpSessionModel Modifier and Type Method Description HttpSessionModelAbstractHttpSessionCollection. create(javax.servlet.http.HttpSession session)This method creates a new session, returning the session model for the new session.HttpSessionModelHttpSessionCollection. create(javax.servlet.http.HttpSession session)This method creates a new session, returning the session model for the new session.HttpSessionModelHttpSessionCollection. create(javax.servlet.http.HttpSession session, String sId)This method attempts to create a new session with a specific ID, returning the session model for the new session.HttpSessionModelAbstractHttpSessionCollection. get(String sId)Obtain the HttpSessionModel for the specified session, or null if it does not exist.HttpSessionModelHttpSessionCollection. get(String sId)Obtain the HttpSessionModel for the specified session, or null if it does not exist.Methods in com.tangosol.coherence.servlet with parameters of type HttpSessionModel Modifier and Type Method Description booleanAbstractHttpSessionCollection.DistributedController. isSessionAttributeDistributed(HttpSessionModel model, String sName)Determine if the specified attribute of the HttpSession associated with the passed session model should be distributed.booleanAbstractHttpSessionCollection.HybridController. isSessionAttributeDistributed(HttpSessionModel model, String sName)Determine if the specified attribute of the HttpSession associated with the passed session model should be distributed.booleanAbstractHttpSessionCollection.LocalController. isSessionAttributeDistributed(HttpSessionModel model, String sName)Determine if the specified attribute of the HttpSession associated with the passed session model should be distributed.booleanHttpSessionCollection.SessionDistributionController. isSessionAttributeDistributed(HttpSessionModel model, String sName)Determine if the specified attribute of the HttpSession associated with the passed session model should be distributed.booleanAbstractHttpSessionCollection.DistributedController. isSessionDistributed(HttpSessionModel model)Determine if the HttpSession associated with the passed session model should be distributed.booleanAbstractHttpSessionCollection.HybridController. isSessionDistributed(HttpSessionModel model)Determine if the HttpSession associated with the passed session model should be distributed.booleanAbstractHttpSessionCollection.LocalController. isSessionDistributed(HttpSessionModel model)Determine if the HttpSession associated with the passed session model should be distributed.booleanHttpSessionCollection.SessionDistributionController. isSessionDistributed(HttpSessionModel model)Determine if the HttpSession associated with the passed session model should be distributed. -
Uses of HttpSessionModel in com.tangosol.coherence.servlet.api23
Methods in com.tangosol.coherence.servlet.api23 that return HttpSessionModel Modifier and Type Method Description protected HttpSessionModelHttpSessionImpl. ensureActiveModel()Obtain an "active" HttpSessionModel for this session.protected HttpSessionModelHttpSessionImpl. ensureUsableModel()Obtain a "usable" HttpSessionModel for this session, which may or may not be active.
-