Package org.apache.shiro.session.mgt
Class DefaultSessionKey
- java.lang.Object
-
- org.apache.shiro.session.mgt.DefaultSessionKey
-
- All Implemented Interfaces:
Serializable
,SessionKey
public class DefaultSessionKey extends Object implements SessionKey, Serializable
Default implementation of theSessionKey
interface, which allows setting and retrieval of a concretesessionId
that theSessionManager
implementation can use to look up aSession
instance.- Since:
- 1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DefaultSessionKey()
DefaultSessionKey(Serializable sessionId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Serializable
getSessionId()
Returns the id of the session to acquire.void
setSessionId(Serializable sessionId)
-
-
-
Constructor Detail
-
DefaultSessionKey
public DefaultSessionKey()
-
DefaultSessionKey
public DefaultSessionKey(Serializable sessionId)
-
-
Method Detail
-
setSessionId
public void setSessionId(Serializable sessionId)
-
getSessionId
public Serializable getSessionId()
Description copied from interface:SessionKey
Returns the id of the session to acquire. Acquiring sessions by ID only is a suitable strategy when sessions are natively managed by Shiro directly. For example, the Servlet specification does not have an API that allows session acquisition by session ID, so the session ID alone is not sufficient for ServletContainer-based SessionManager implementations.- Specified by:
getSessionId
in interfaceSessionKey
- Returns:
- the id of the session to acquire.
-
-