mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-05-29 16:22:12 +00:00
Use Collection<ConfigAttribute> in examples
To match `org.springframework.security.access.ConfigAttribute`.
This commit is contained in:
parent
7560a32460
commit
6e63278ab9
@ -122,7 +122,7 @@ public class AccessDecisionManagerAuthorizationManagerAdapter implements Authori
|
||||
@Override
|
||||
public AuthorizationDecision check(Supplier<Authentication> authentication, Object object) {
|
||||
try {
|
||||
Collection<ConfigAttributes> attributes = this.securityMetadataSource.getAttributes(object);
|
||||
Collection<ConfigAttribute> attributes = this.securityMetadataSource.getAttributes(object);
|
||||
this.accessDecisionManager.decide(authentication.get(), object, attributes);
|
||||
return new AuthorizationDecision(true);
|
||||
} catch (AccessDeniedException ex) {
|
||||
@ -132,7 +132,7 @@ public class AccessDecisionManagerAuthorizationManagerAdapter implements Authori
|
||||
|
||||
@Override
|
||||
public void verify(Supplier<Authentication> authentication, Object object) {
|
||||
Collection<ConfigAttributes> attributes = this.securityMetadataSource.getAttributes(object);
|
||||
Collection<ConfigAttribute> attributes = this.securityMetadataSource.getAttributes(object);
|
||||
this.accessDecisionManager.decide(authentication.get(), object, attributes);
|
||||
}
|
||||
}
|
||||
@ -155,7 +155,7 @@ public class AccessDecisionVoterAuthorizationManagerAdapter implements Authoriza
|
||||
|
||||
@Override
|
||||
public AuthorizationDecision check(Supplier<Authentication> authentication, Object object) {
|
||||
Collection<ConfigAttributes> attributes = this.securityMetadataSource.getAttributes(object);
|
||||
Collection<ConfigAttribute> attributes = this.securityMetadataSource.getAttributes(object);
|
||||
int decision = this.accessDecisionVoter.vote(authentication.get(), object, attributes);
|
||||
switch (decision) {
|
||||
case ACCESS_GRANTED:
|
||||
|
Loading…
x
Reference in New Issue
Block a user