|
Method Summary | ||
void |
createAuthentication(String userName, char[] password) Create an authentication for the given user. |
|
void |
deleteAuthentication(String userName) Delete an authentication entry |
|
boolean |
isAuthenticationCreationAllowed() Determines whether authentication creation is allowed. |
|
boolean |
isAuthenticationMutable(String userName) Determines whether this user's authentication may be mutated via the other methods. |
|
void |
setAuthentication(String userName, char[] newPassword) Set the login information for a user (typically called by an admin user) |
|
void |
setAuthenticationEnabled(String userName, boolean enabled) Enable or disable an authentication entry |
|
void |
updateAuthentication(String userName, char[] oldPassword, char[] newPassword) Update the login information for the user (typically called by the user) |
true
if this user's authentication may be mutated via the other methods.true
if authentication creation is allowed
|