Class WebExpressionAuthorizationManager
java.lang.Object
org.springframework.security.web.access.expression.WebExpressionAuthorizationManager
- All Implemented Interfaces:
AuthorizationManager<RequestAuthorizationContext>
public final class WebExpressionAuthorizationManager
extends Object
implements AuthorizationManager<RequestAuthorizationContext>
An expression-based
AuthorizationManager that determines the access by
evaluating the provided expression.- Since:
- 5.8
-
Constructor Summary
ConstructorsConstructorDescriptionWebExpressionAuthorizationManager(String expressionString) Creates an instance. -
Method Summary
Modifier and TypeMethodDescriptioncheck(Supplier<Authentication> authentication, RequestAuthorizationContext context) Determines the access by evaluating the provided expression.voidsetExpressionHandler(SecurityExpressionHandler<RequestAuthorizationContext> expressionHandler) Sets theSecurityExpressionHandlerto be used.toString()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.springframework.security.authorization.AuthorizationManager
authorize, verify
-
Constructor Details
-
WebExpressionAuthorizationManager
Creates an instance.- Parameters:
expressionString- the raw expression string to parse
-
-
Method Details
-
setExpressionHandler
public void setExpressionHandler(SecurityExpressionHandler<RequestAuthorizationContext> expressionHandler) Sets theSecurityExpressionHandlerto be used. The default isDefaultHttpSecurityExpressionHandler.- Parameters:
expressionHandler- theSecurityExpressionHandlerto use
-
check
public AuthorizationDecision check(Supplier<Authentication> authentication, RequestAuthorizationContext context) Determines the access by evaluating the provided expression.- Specified by:
checkin interfaceAuthorizationManager<RequestAuthorizationContext>- Parameters:
authentication- theSupplierof theAuthenticationto checkcontext- theRequestAuthorizationContextto check- Returns:
- an
ExpressionAuthorizationDecisionbased on the evaluated expression
-
toString
-