Class PreAuthorizeAuthorizationManager
- java.lang.Object
-
- org.springframework.security.authorization.method.PreAuthorizeAuthorizationManager
-
- All Implemented Interfaces:
AuthorizationManager<org.aopalliance.intercept.MethodInvocation>
public final class PreAuthorizeAuthorizationManager extends java.lang.Object implements AuthorizationManager<org.aopalliance.intercept.MethodInvocation>
AnAuthorizationManagerwhich can determine if anAuthenticationmay invoke theMethodInvocationby evaluating an expression from thePreAuthorizeannotation.- Since:
- 5.6
-
-
Constructor Summary
Constructors Constructor Description PreAuthorizeAuthorizationManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorizationDecisioncheck(java.util.function.Supplier<Authentication> authentication, org.aopalliance.intercept.MethodInvocation mi)Determine if anAuthenticationhas access to a method by evaluating an expression from thePreAuthorizeannotation that theMethodInvocationspecifies.voidsetExpressionHandler(MethodSecurityExpressionHandler expressionHandler)Sets theMethodSecurityExpressionHandler.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.springframework.security.authorization.AuthorizationManager
verify
-
-
-
-
Method Detail
-
setExpressionHandler
public void setExpressionHandler(MethodSecurityExpressionHandler expressionHandler)
Sets theMethodSecurityExpressionHandler.- Parameters:
expressionHandler- theMethodSecurityExpressionHandlerto use
-
check
public AuthorizationDecision check(java.util.function.Supplier<Authentication> authentication, org.aopalliance.intercept.MethodInvocation mi)
Determine if anAuthenticationhas access to a method by evaluating an expression from thePreAuthorizeannotation that theMethodInvocationspecifies.- Specified by:
checkin interfaceAuthorizationManager<org.aopalliance.intercept.MethodInvocation>- Parameters:
authentication- theSupplierof theAuthenticationto checkmi- theMethodInvocationto check- Returns:
- an
AuthorizationDecisionornullif thePreAuthorizeannotation is not present
-
-