User
class User implements AdvancedUserInterface
User is the user implementation used by the in-memory user provider.
This should not be used for anything else.
Methods
No description
No description
Returns the password used to authenticate the user.
Returns the salt that was originally used to encode the password.
Returns the username used to authenticate the user.
Checks whether the user's account has expired.
Checks whether the user is locked.
Checks whether the user's credentials (password) has expired.
Checks whether the user is enabled.
Removes sensitive data from the user.
Details
at line line 31
__construct($username, $password, array $roles = array(), $enabled = true, $userNonExpired = true, $credentialsNonExpired = true, $userNonLocked = true)
at line line 46
__toString()
at line line 54
Role[]
getRoles()
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.
at line line 62
string
getPassword()
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.
at line line 70
string|null
getSalt()
Returns the salt that was originally used to encode the password.
This can return null if the password was not encoded using a salt.
at line line 77
string
getUsername()
Returns the username used to authenticate the user.
at line line 85
bool
isAccountNonExpired()
Checks whether the user's account has expired.
Internally, if this method returns false, the authentication system will throw an AccountExpiredException and prevent login.
at line line 93
bool
isAccountNonLocked()
Checks whether the user is locked.
Internally, if this method returns false, the authentication system will throw a LockedException and prevent login.
at line line 101
bool
isCredentialsNonExpired()
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.
at line line 109
bool
isEnabled()
Checks whether the user is enabled.
Internally, if this method returns false, the authentication system will throw a DisabledException and prevent login.
at line line 117
eraseCredentials()
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.