Class MethodExpressionAuthorizationManager
java.lang.Object
org.springframework.security.authorization.method.MethodExpressionAuthorizationManager
- All Implemented Interfaces:
AuthorizationManager<org.aopalliance.intercept.MethodInvocation>
public final class MethodExpressionAuthorizationManager
extends Object
implements AuthorizationManager<org.aopalliance.intercept.MethodInvocation>
An expression-based
AuthorizationManager that determines the access by
evaluating the provided expression against the MethodInvocation.- Since:
- 5.8
-
Constructor Summary
ConstructorsConstructorDescriptionMethodExpressionAuthorizationManager(String expressionString) Creates an instance. -
Method Summary
Modifier and TypeMethodDescriptioncheck(Supplier<Authentication> authentication, org.aopalliance.intercept.MethodInvocation context) Determines the access by evaluating the provided expression.voidsetExpressionHandler(SecurityExpressionHandler<org.aopalliance.intercept.MethodInvocation> 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
-
MethodExpressionAuthorizationManager
Creates an instance.- Parameters:
expressionString- the raw expression string to parse
-
-
Method Details
-
setExpressionHandler
public void setExpressionHandler(SecurityExpressionHandler<org.aopalliance.intercept.MethodInvocation> expressionHandler) Sets theSecurityExpressionHandlerto be used. The default isDefaultMethodSecurityExpressionHandler.- Parameters:
expressionHandler- theSecurityExpressionHandlerto use
-
check
public AuthorizationDecision check(Supplier<Authentication> authentication, org.aopalliance.intercept.MethodInvocation context) Determines the access by evaluating the provided expression.- Specified by:
checkin interfaceAuthorizationManager<org.aopalliance.intercept.MethodInvocation>- Parameters:
authentication- theSupplierof theAuthenticationto checkcontext- theMethodInvocationto check- Returns:
- an
ExpressionAuthorizationDecisionbased on the evaluated expression
-
toString
-