Interface UsersService


public interface UsersService
  • Method Details

    • getUser

      UserBean getUser(@NotNull String username)
      Get the user.
      Parameters:
      username - the user name
      Returns:
      the user bean
    • updateUser

      UserBean updateUser(@NotNull String username, @NotNull UserBean userBean)
      Update the user.
      Parameters:
      username - the user name
      userBean - the user bean
      Returns:
      the updated user bean
    • updatePassword

      UserBean updatePassword(@NotNull String username, @NotNull String password)
      Update the user password.
      Parameters:
      username - the user name
      password - the password
      Returns:
      the updated user bean