Package org.apache.shiro.web.mgt
Class DefaultWebSessionStorageEvaluator
- java.lang.Object
-
- org.apache.shiro.mgt.DefaultSessionStorageEvaluator
-
- org.apache.shiro.web.mgt.DefaultWebSessionStorageEvaluator
-
- All Implemented Interfaces:
org.apache.shiro.mgt.SessionStorageEvaluator
public class DefaultWebSessionStorageEvaluator extends org.apache.shiro.mgt.DefaultSessionStorageEvaluatorA web-specificSessionStorageEvaluatorthat performs the same logic as the parent classDefaultSessionStorageEvaluatorbut additionally checks for a request-specific flag that may enable or disable session access. This implementation usually works in conjunction with theNoSessionCreationFilter: If theNoSessionCreationFilteris configured in a filter chain, that filter will set a specificServletRequestattributeindicating that session creation should be disabled. ThisDefaultWebSessionStorageEvaluatorwill then inspect this attribute, and if it has been set, will returnfalsefromisSessionStorageEnabled(org.apache.shiro.subject.Subject)method, thereby preventing Shiro from creating a session for the purpose of storing subject state. If the request attribute has not been set (i.e. theNoSessionCreationFilteris not configured or has been disabled), this class does nothing and delegates to the parent class for existing behavior.- Since:
- 1.2
-
-
Constructor Summary
Constructors Constructor Description DefaultWebSessionStorageEvaluator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisSessionStorageEnabled(org.apache.shiro.subject.Subject subject)Returnstrueif session storage is generally available (as determined by the super class's global configuration propertyDefaultSessionStorageEvaluator.isSessionStorageEnabled()and no request-specific override has turned off session storage,falseotherwise.
-
-
-
Method Detail
-
isSessionStorageEnabled
public boolean isSessionStorageEnabled(org.apache.shiro.subject.Subject subject)
Returnstrueif session storage is generally available (as determined by the super class's global configuration propertyDefaultSessionStorageEvaluator.isSessionStorageEnabled()and no request-specific override has turned off session storage,falseotherwise. This means session storage is disabled if theDefaultSessionStorageEvaluator.isSessionStorageEnabled()property isfalseor if a request attribute is discovered that turns off session storage for the current request.- Specified by:
isSessionStorageEnabledin interfaceorg.apache.shiro.mgt.SessionStorageEvaluator- Overrides:
isSessionStorageEnabledin classorg.apache.shiro.mgt.DefaultSessionStorageEvaluator- Parameters:
subject- theSubjectfor which session state persistence may be enabled- Returns:
trueif session storage is generally available (as determined by the super class's global configuration propertyDefaultSessionStorageEvaluator.isSessionStorageEnabled()and no request-specific override has turned off session storage,falseotherwise.
-
-