Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ProfileForm (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

    /**
     */
    package org.codelibs.fess.app.web.profile;
    
    import jakarta.validation.constraints.NotBlank;
    
    /**
     * Form for user profile operations.
     */
    public class ProfileForm {
    
        /**
         * Default constructor.
         */
        public ProfileForm() {
            // Default constructor
        }
    
        /** The old password. */
        @NotBlank
        public String oldPassword;
    
        /** The new password. */
        @NotBlank
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java

        }
    
        /**
         * Changes the user password.
         *
         * @param form the profile form
         * @return the HTML response
         */
        @Execute
        public HtmlResponse changePassword(final ProfileForm form) {
            final VaErrorHook toIndexPage = () -> {
                form.clearSecurityInfo();
                return asIndexHtml();
            };
            validatePasswordForm(form, toIndexPage);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 06:18:24 GMT 2026
    - 6.3K bytes
    - Click Count (0)
Back to Top