- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ProfileForm (0.3 sec)
-
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
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
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);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0)