Uses of Class
org.apache.shiro.session.UnknownSessionException
Packages that use UnknownSessionException
Package
Description
SessionManager components supporting enterprise session management.EIS (Enterprise Information System)-tier components that can perform CRUD operations for sessions
using any EIS API.
-
Uses of UnknownSessionException in org.apache.shiro.session.mgt
Methods in org.apache.shiro.session.mgt that throw UnknownSessionExceptionModifier and TypeMethodDescriptionprotected abstract SessionAbstractValidatingSessionManager.retrieveSession(SessionKey key) Looks up a session from the underlying data store based on the specified session key.protected SessionDefaultSessionManager.retrieveSession(SessionKey sessionKey) protected SessionDefaultSessionManager.retrieveSessionFromDataSource(Serializable sessionId) -
Uses of UnknownSessionException in org.apache.shiro.session.mgt.eis
Methods in org.apache.shiro.session.mgt.eis that throw UnknownSessionExceptionModifier and TypeMethodDescriptionAbstractSessionDAO.readSession(Serializable sessionId) Retrieves the Session object from the underlying EIS identified by sessionId by delegating to theAbstractSessionDAO.doReadSession(java.io.Serializable)method.CachingSessionDAO.readSession(Serializable sessionId) Attempts to acquire the Session from the cache first using the session ID as the cache key.SessionDAO.readSession(Serializable sessionId) Retrieves the session from the EIS uniquely identified by the specifiedsessionId.voidUpdates the state of the given session to the EIS by first delegating toCachingSessionDAO.doUpdate(org.apache.shiro.session.Session).voidvoidUpdates (persists) data from a previously created Session instance in the EIS identified by{@link Session#getId() session.getId()}.