Interface AuthenticationManager
-
@Service public interface AuthenticationManagerApplication component for authentication related use cases.- Author:
- Oliver Gierke
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<UserAccount>getCurrentUser()Returns theUserAccountof the currently logged in user orOptional.empty()if no-one is currently logged in.booleanmatches(Password.UnencryptedPassword candidate, Password.EncryptedPassword existing)Returns whether the given candidatePasswordmatches the given existing one.
-
-
-
Method Detail
-
getCurrentUser
Optional<UserAccount> getCurrentUser()
Returns theUserAccountof the currently logged in user orOptional.empty()if no-one is currently logged in.- Returns:
-
matches
boolean matches(Password.UnencryptedPassword candidate, Password.EncryptedPassword existing)
Returns whether the given candidatePasswordmatches the given existing one.- Parameters:
candidate- can be null.existing- must not be null.- Returns:
-
-