void |
UserService.deleteUser(java.lang.String userId) |
Deletes a user who has performed no actions in the system.
|
User |
UserService.getUserByUserId(java.lang.String userId) |
Gets the full representation of a user given their user identifier.
|
UserDescriptor |
UserService.getUserDescriptorByUserId(java.lang.String userId) |
Gets the lightweight representation of the user with the specified user identifier.
|
void |
UserService.lockUser(java.lang.String userId) |
Locks a user with the specified user identifier.
|
void |
UserService.resetPassword(java.lang.String userId,
java.lang.String newPassword) |
Resets the password of a user.
|
User |
UserService.setDefaultAuthenticatorByUserId(java.lang.String userId,
java.lang.String newPassword) |
Sets the specified user account to use the default authenticator and the new password specified.
|
User |
UserService.setExternalAuthenticatorByUserId(java.lang.String userId,
java.lang.String authenticator,
java.lang.String authenticatorUsername) |
Sets the external authenticator for a user.
|
void |
UserService.unlockUser(java.lang.String userId) |
Unlocks a user with the specified user identifier.
|
User |
UserService.updateUser(User user) |
Updates a user in the system.
|