interface AdvancedUserInterface implements UserInterface
deprecated
Adds extra features to a user class related to account status flags.
This interface can be implemented in place of UserInterface if you'd like the authentication system to consider different account status flags during authentication. If any of the methods in this interface return false, authentication will fail.
If you need to perform custom logic for any of these situations, then you will need to register an exception listener and watch for the specific exception instances thrown in each case. All exceptions are a subclass of AccountStatusException
(Role|string)[] | getRoles() Returns the roles granted to the user. | from UserInterface |
string | getPassword() Returns the password used to authenticate the user. | from UserInterface |
string|null | getSalt() Returns the salt that was originally used to encode the password. | from UserInterface |
string | getUsername() Returns the username used to authenticate the user. | from UserInterface |
eraseCredentials() Removes sensitive data from the user. | from UserInterface | |
bool | isAccountNonExpired() Checks whether the user's account has expired. | |
bool | isAccountNonLocked() Checks whether the user is locked. | |
bool | isCredentialsNonExpired() Checks whether the user's credentials (password) has expired. | |
bool | isEnabled() Checks whether the user is enabled. |
Returns the roles granted to the user.
public function getRoles() { return array('ROLE_USER'); }
Alternatively, the roles might be stored on a roles
property, and populated in any number of different ways when the user object is created.
(Role|string)[] | The user roles |
Returns the password used to authenticate the user.
This should be the encoded password. On authentication, a plain-text password will be salted, encoded, and then compared to this value.
string | The password |
Returns the salt that was originally used to encode the password.
This can return null if the password was not encoded using a salt.
string|null | The salt |
Returns the username used to authenticate the user.
string | The username |
Removes sensitive data from the user.
This is important if, at any given point, sensitive information like the plain-text password is stored on this object.
Checks whether the user's account has expired.
Internally, if this method returns false, the authentication system will throw an AccountExpiredException and prevent login.
bool | true if the user's account is non expired, false otherwise |
AccountExpiredException |
Checks whether the user is locked.
Internally, if this method returns false, the authentication system will throw a LockedException and prevent login.
bool | true if the user is not locked, false otherwise |
LockedException |
Checks whether the user's credentials (password) has expired.
Internally, if this method returns false, the authentication system will throw a CredentialsExpiredException and prevent login.
bool | true if the user's credentials are non expired, false otherwise |
CredentialsExpiredException |
Checks whether the user is enabled.
Internally, if this method returns false, the authentication system will throw a DisabledException and prevent login.
bool | true if the user is enabled, false otherwise |
DisabledException |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/Security/Core/User/AdvancedUserInterface.html