Class Jsr250AuthorizationManager
- java.lang.Object
-
- org.springframework.security.authorization.method.Jsr250AuthorizationManager
-
- All Implemented Interfaces:
AuthorizationManager<org.aopalliance.intercept.MethodInvocation>
public final class Jsr250AuthorizationManager extends java.lang.Object implements AuthorizationManager<org.aopalliance.intercept.MethodInvocation>
AnAuthorizationManagerwhich can determine if anAuthenticationmay invoke theMethodInvocationby evaluating if theAuthenticationcontains a specified authority from the JSR-250 security annotations.- Since:
- 5.6
-
-
Constructor Summary
Constructors Constructor Description Jsr250AuthorizationManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorizationDecisioncheck(java.util.function.Supplier<Authentication> authentication, org.aopalliance.intercept.MethodInvocation methodInvocation)Determine if anAuthenticationhas access to a method by evaluating theDenyAll,PermitAll, andRolesAllowedannotations thatMethodInvocationspecifies.voidsetRolePrefix(java.lang.String rolePrefix)Sets the role prefix.-
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
-
setRolePrefix
public void setRolePrefix(java.lang.String rolePrefix)
Sets the role prefix. Defaults to "ROLE_".- Parameters:
rolePrefix- the role prefix to use
-
check
public AuthorizationDecision check(java.util.function.Supplier<Authentication> authentication, org.aopalliance.intercept.MethodInvocation methodInvocation)
Determine if anAuthenticationhas access to a method by evaluating theDenyAll,PermitAll, andRolesAllowedannotations thatMethodInvocationspecifies.- Specified by:
checkin interfaceAuthorizationManager<org.aopalliance.intercept.MethodInvocation>- Parameters:
authentication- theSupplierof theAuthenticationto checkmethodInvocation- theMethodInvocationto check- Returns:
- an
AuthorizationDecisionor null if the JSR-250 security annotations is not present
-
-