Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for newPassword (0.23 sec)

  1. src/main/java/org/codelibs/fess/app/web/profile/ProfileForm.java

    public class ProfileForm {
    
        @NotBlank
        public String oldPassword;
    
        @NotBlank
        public String newPassword;
    
        @NotBlank
        public String confirmNewPassword;
    
        public void clearSecurityInfo() {
            oldPassword = null;
            newPassword = null;
            confirmNewPassword = null;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java

        private void validatePasswordForm(final ProfileForm form, final VaErrorHook validationErrorLambda) {
            validate(form, messages -> {}, validationErrorLambda);
    
            if (!form.newPassword.equals(form.confirmNewPassword)) {
                form.newPassword = null;
                form.confirmNewPassword = null;
                throwValidationError(messages -> {
                    messages.addErrorsInvalidConfirmPassword(GLOBAL);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/login/LoginAction.java

                userService.changePassword(username, form.password);
                saveInfo(messages -> messages.addSuccessChangedPassword(GLOBAL));
            } catch (final Exception e) {
                logger.warn("Failed to change newPassword for {}", username, e);
                throwValidationError(messages -> messages.addErrorsFailedToChangePassword(GLOBAL), toIndexPage);
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /login/index.jsp */
        HtmlNext path_Login_IndexJsp = new HtmlNext("/login/index.jsp");
    
        /** The path of the HTML: /login/newpassword.jsp */
        HtmlNext path_Login_NewpasswordJsp = new HtmlNext("/login/newpassword.jsp");
    
        /** The path of the HTML: /profile/index.jsp */
        HtmlNext path_Profile_IndexJsp = new HtmlNext("/profile/index.jsp");
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (2)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_storage_tag_value = "{labels.storage_tag_value}";
    
        /** The key of the message: Your password needs to be updated. */
        public static final String LABELS_LOGIN_NEWPASSWORD = "{labels.login.newpassword}";
    
        /** The key of the message: New Password */
        public static final String LABELS_LOGIN_placeholder_new_password = "{labels.login.placeholder_new_password}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
Back to top