com.cometway.om
Interface SessionManagerInterface

All Known Implementing Classes:
SessionManager

public interface SessionManagerInterface

Standard interface for managing session information that is accessed using Props.


Method Summary
 java.lang.String createSession()
          Creates a new session and returns its unique sessionID.
 boolean destroySession(java.lang.String sessionID)
          Destroys the specified session and returns true; false if the session did not exist or could not be destroyed.
 Props getSessionProps(java.lang.String sessionID)
          Returns the Props for the specified session; null if the session does not exist.
 

Method Detail

createSession

java.lang.String createSession()
Creates a new session and returns its unique sessionID.


getSessionProps

Props getSessionProps(java.lang.String sessionID)
Returns the Props for the specified session; null if the session does not exist.


destroySession

boolean destroySession(java.lang.String sessionID)
Destroys the specified session and returns true; false if the session did not exist or could not be destroyed.