| |
|
| java.lang.Object com.lutris.appserver.server.sessionContainerAdapter.ContainerAdapterSession
SESSION | protected String SESSION(Code) | | Name of the session object in the HttpSession
|
ContainerAdapterSession | public ContainerAdapterSession()(Code) | | Default constructor
|
ContainerAdapterSession | public ContainerAdapterSession(ContainerAdapterSessionManager sessionManager, HttpSession httpSession)(Code) | | Parameters: sessionManager - SessionManager that is used to create this Session object Parameters: sessionKey - The identifiction of the session |
getMaxIdleTime | public long getMaxIdleTime()(Code) | | Obtain the maximum idle time for this object. Zero (or negative)
indicates that sessions may be idle indefinetly.
The maximum number of milliseconds this sessionmay be idle. |
getSessionKey | public String getSessionKey()(Code) | | the session identification |
getSessionManager | public SessionManager getSessionManager()(Code) | | the SessionManager used to create this session |
getTimeCreated | public long getTimeCreated()(Code) | | the session creation time |
getTimeLastUsed | public long getTimeLastUsed()(Code) | | Obtain the time of last use for this object. The time is in
milliseconds since Midnight, Jan 1, 1970 (epoch).
The time of last use since epoch for this object. |
getUser | public User getUser()(Code) | | the User object; |
isNew | public boolean isNew()(Code) | | |
setMaxIdleTime | public void setMaxIdleTime(int maxIdleTime)(Code) | | Set the maximum idle time for this object. Set this to zero
(or negative) to disable idle checking.
Parameters: maxIdleTime - The maximum number of milliseconds thissession may be idle, or zero (or negative) to allow sessions to be idleindefinetly. |
setSessionData | public void setSessionData(SessionData sessionData)(Code) | | puts the SessionData into this session
Parameters: sessionData - |
setTimeCreated | protected void setTimeCreated(long cTime)(Code) | | |
|
|
|