Class Login.PasswordModifyRequest

  • Enclosing class:
    Login

    public static class Login.PasswordModifyRequest
    extends Request<DefaultResponse>
    Modify the password for a user/administrator. When oldPassword is specified, password rule applies. If oldPassword in not specified, any password rule related to old password does not apply. The response is either a SuccessResponse or an ErrorResponse.
    Author:
    AlpacaGenerator
    • Field Detail

      • userId

        @NotNull
        @Size(min=1,
              max=161)
        protected @NotNull @Size(min=1,max=161) String userId
      • oldPassword

        @Size(min=1,
              max=60)
        protected @Size(min=1,max=60) String oldPassword
      • newPassword

        @NotNull
        @Size(min=1,
              max=60)
        protected @NotNull @Size(min=1,max=60) String newPassword
    • Constructor Detail

      • PasswordModifyRequest

        public PasswordModifyRequest()