Uses of Class
org.apache.shiro.session.SessionException
-
Packages that use SessionException Package Description org.apache.shiro.mgt Provides the masterSecurityManager
interface and a default implementation hierarchy for managing all aspects of Shiro's functionality in an application.org.apache.shiro.session Components related to managing sessions, the time-based data contexts in which a Subject interacts with an application.org.apache.shiro.session.mgt SessionManager
components supporting enterprise session management.org.apache.shiro.subject.support Concrete support implementations of most of theorg.apache.shiro.subject
interfaces. -
-
Uses of SessionException in org.apache.shiro.mgt
Methods in org.apache.shiro.mgt that throw SessionException Modifier and Type Method Description Session
SessionsSecurityManager. getSession(SessionKey key)
-
Uses of SessionException in org.apache.shiro.session
Subclasses of SessionException in org.apache.shiro.session Modifier and Type Class Description class
ExpiredSessionException
A special case of a StoppedSessionException.class
InvalidSessionException
Exception thrown when attempting to interact with the system under an established session when that session is considered invalid.class
StoppedSessionException
Exception thrown when attempting to interact with the system under a session that has been stopped.class
UnknownSessionException
Exception thrown when attempting to interact with the system under the pretense of a particular session (e.g. -
Uses of SessionException in org.apache.shiro.session.mgt
Methods in org.apache.shiro.session.mgt that throw SessionException Modifier and Type Method Description Session
AbstractNativeSessionManager. getSession(SessionKey key)
Session
SessionManager. getSession(SessionKey key)
Retrieves the session corresponding to the specified contextual data (such as a session ID if applicable), ornull
if no Session could be found. -
Uses of SessionException in org.apache.shiro.subject.support
Subclasses of SessionException in org.apache.shiro.subject.support Modifier and Type Class Description class
DisabledSessionException
Exception thrown if attempting to create a newSubject
session
, but thatSubject
's sessions are disabled.
-