Package org.apache.shiro.mgt
Interface SessionStorageEvaluator
-
- All Known Implementing Classes:
DefaultSessionStorageEvaluator
public interface SessionStorageEvaluator
Evaluates whether or not Shiro may use aSubject
'sSession
to persist thatSubject
's internal state. It is a common Shiro implementation strategy to use a Subject's session to persist the Subject's identity and authentication state (e.g. after login) so that information does not need to be passed around for any further requests/invocations. This effectively allows a session id to be used for any request or invocation as the only 'pointer' that Shiro needs, and from that, Shiro can re-create the Subject instance based on the referenced Session. However, in purely stateless applications, such as some REST applications or those where every request is authenticated, it is usually not needed or desirable to use Sessions to store this state (since it is in fact re-created on every request). In these applications, sessions would never be used. This interface allows implementations to determine exactly when a Session might be used or not to storeSubject
state on a per-Subject basis. If you simply wish to enable or disable session usage at a global level for allSubject
s, theDefaultSessionStorageEvaluator
should be sufficient. Per-subject behavior should be performed in custom implementations of this interface.- Since:
- 1.2
- See Also:
Subject.getSession()
,Subject.getSession(boolean)
,DefaultSessionStorageEvaluator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isSessionStorageEnabled(Subject subject)
Returnstrue
if the specifiedSubject
'ssession
may be used to persist that Subject's state,false
otherwise.
-
-
-
Method Detail
-
isSessionStorageEnabled
boolean isSessionStorageEnabled(Subject subject)
Returnstrue
if the specifiedSubject
'ssession
may be used to persist that Subject's state,false
otherwise.- Parameters:
subject
- theSubject
for which session state persistence may be enabled- Returns:
true
if the specifiedSubject
'ssession
may be used to persist that Subject's state,false
otherwise.- See Also:
Subject.getSession()
,Subject.getSession(boolean)
-
-