Package org.springframework.security.web
Class WebAttributes
- java.lang.Object
 - 
- org.springframework.security.web.WebAttributes
 
 
- 
public final class WebAttributes extends java.lang.ObjectWell-known keys which are used to store Spring Security information in request or session scope.- Since:
 - 3.0.3
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static java.lang.StringACCESS_DENIED_403Used to cache anAccessDeniedExceptionin the request for rendering.static java.lang.StringAUTHENTICATION_EXCEPTIONUsed to cache an authentication-failure exception in the session.static java.lang.StringWEB_INVOCATION_PRIVILEGE_EVALUATOR_ATTRIBUTESet as a request attribute to override the defaultWebInvocationPrivilegeEvaluator 
 - 
 
- 
- 
Field Detail
- 
ACCESS_DENIED_403
public static final java.lang.String ACCESS_DENIED_403
Used to cache anAccessDeniedExceptionin the request for rendering.- See Also:
 AccessDeniedHandlerImpl, Constant Field Values
 
- 
AUTHENTICATION_EXCEPTION
public static final java.lang.String AUTHENTICATION_EXCEPTION
Used to cache an authentication-failure exception in the session. 
- 
WEB_INVOCATION_PRIVILEGE_EVALUATOR_ATTRIBUTE
public static final java.lang.String WEB_INVOCATION_PRIVILEGE_EVALUATOR_ATTRIBUTE
Set as a request attribute to override the defaultWebInvocationPrivilegeEvaluator- Since:
 - 3.1.3
 - See Also:
 WebInvocationPrivilegeEvaluator
 
 - 
 
 -