Uses of Class
org.apache.shiro.session.UnknownSessionException
-
Packages that use UnknownSessionException Package Description org.apache.shiro.session.mgt SessionManagercomponents supporting enterprise session management.org.apache.shiro.session.mgt.eis 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 UnknownSessionException Modifier and Type Method Description protected 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 UnknownSessionException Modifier and Type Method Description SessionAbstractSessionDAO. readSession(Serializable sessionId)Retrieves the Session object from the underlying EIS identified by sessionId by delegating to theAbstractSessionDAO.doReadSession(java.io.Serializable)method.SessionCachingSessionDAO. readSession(Serializable sessionId)Attempts to acquire the Session from the cache first using the session ID as the cache key.SessionSessionDAO. readSession(Serializable sessionId)Retrieves the session from the EIS uniquely identified by the specifiedsessionId.voidCachingSessionDAO. update(Session session)Updates the state of the given session to the EIS by first delegating toCachingSessionDAO.doUpdate(org.apache.shiro.session.Session).voidMemorySessionDAO. update(Session session)voidSessionDAO. update(Session session)Updates (persists) data from a previously created Session instance in the EIS identified by{@link Session#getId() session.getId()}.
-