Package org.apache.shiro.session.mgt
Interface SessionManager
-
- All Known Subinterfaces:
NativeSessionManager,SecurityManager,ValidatingSessionManager
- All Known Implementing Classes:
AbstractNativeSessionManager,AbstractSessionManager,AbstractValidatingSessionManager,AuthenticatingSecurityManager,AuthorizingSecurityManager,CachingSecurityManager,DefaultSecurityManager,DefaultSessionManager,RealmSecurityManager,SessionsSecurityManager
public interface SessionManagerA SessionManager manages the creation, maintenance, and clean-up of all applicationSessions.- Since:
- 0.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SessiongetSession(SessionKey key)Retrieves the session corresponding to the specified contextual data (such as a session ID if applicable), ornullif no Session could be found.Sessionstart(SessionContext context)Starts a new session based on the specified contextual initialization data, which can be used by the underlying implementation to determine how exactly to create the internal Session instance.
-
-
-
Method Detail
-
start
Session start(SessionContext context)
Starts a new session based on the specified contextual initialization data, which can be used by the underlying implementation to determine how exactly to create the internal Session instance. This method is mainly used in framework development, as the implementation will often relay the argument to an underlyingSessionFactorywhich could use the context to construct the internal Session instance in a specific manner. This allows pluggableSessioncreation logic by simply injecting aSessionFactoryinto theSessionManagerinstance.- Parameters:
context- the contextual initialization data that can be used by the implementation or underlyingSessionFactorywhen instantiating the internalSessioninstance.- Returns:
- the newly created session.
- Since:
- 1.0
- See Also:
SessionFactory.createSession(SessionContext)
-
getSession
Session getSession(SessionKey key) throws SessionException
Retrieves the session corresponding to the specified contextual data (such as a session ID if applicable), ornullif no Session could be found. If a session is found but invalid (stopped or expired), aSessionExceptionwill be thrown.- Parameters:
key- the Session key to use to look-up the Session- Returns:
- the
Sessioninstance corresponding to the given lookup key ornullif no session could be acquired. - Throws:
SessionException- if a session was found but it was invalid (stopped/expired).- Since:
- 1.0
-
-