mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-26 22:02:41 +00:00
Polish JavaDoc
- Replace ampersand - Correct since version Issue gh-11510
This commit is contained in:
parent
5fcbb9f4ed
commit
9bf2d3cd86
@ -62,9 +62,9 @@ public interface AuthenticationTrustResolver {
|
|||||||
* @param authentication to test (may be <code>null</code> in which case the method
|
* @param authentication to test (may be <code>null</code> in which case the method
|
||||||
* will always return <code>false</code>)
|
* will always return <code>false</code>)
|
||||||
* @return <code>true</code> the passed authentication token represented an anonymous
|
* @return <code>true</code> the passed authentication token represented an anonymous
|
||||||
* principal & is authenticated using a remember-me token, <code>false</code>
|
* principal and is authenticated using a remember-me token, <code>false</code>
|
||||||
* otherwise
|
* otherwise
|
||||||
* @since 5.8
|
* @since 6.1
|
||||||
*/
|
*/
|
||||||
default boolean isFullyAuthenticated(Authentication authentication) {
|
default boolean isFullyAuthenticated(Authentication authentication) {
|
||||||
return !isAnonymous(authentication) && !isRememberMe(authentication);
|
return !isAnonymous(authentication) && !isRememberMe(authentication);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user