Skip to content

Commit fbc4d75

Browse files
Karthikeyan RKarthikeyan R
authored andcommitted
Add isFullyAuthenticated to AuthenticatedAuthorizationManager
closes spring-projectsgh-11510
1 parent 8650131 commit fbc4d75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/springframework/security/authorization/AuthenticatedAuthorizationManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ private static final class FullyAuthenticatedAuthorizationStrategy extends Authe
143143

144144
@Override
145145
boolean isGranted(Authentication authentication) {
146-
return super.isGranted(authentication) && !this.trustResolver.isRememberMe(authentication);
146+
return this.trustResolver.isFullyAuthenticated(authentication);
147147
}
148148

149149
}

0 commit comments

Comments
 (0)