- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for addErrorsNoUserForChangingPassword (0.91 sec)
-
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
fessLoginAssist.findLoginUser(new LocalUserCredential(getUserBean().get().getUserId(), oldPassword)).orElseGet(() -> { throwValidationError(messages -> { messages.addErrorsNoUserForChangingPassword(GLOBAL); }, validationErrorLambda); return null; }); } private OptionalThing<HttpSession> getSession() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java
fessLoginAssist.findLoginUser(new LocalUserCredential(getUserBean().get().getUserId(), form.oldPassword)).orElseGet(() -> { throwValidationError(messages -> { messages.addErrorsNoUserForChangingPassword(GLOBAL); }, validationErrorLambda); return null; }); } /** * Returns the index HTML response. * * @return the HTML response
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
* message: The current password is not correct. * </pre> * @param property The property name for the message. (NotNull) * @return this. (NotNull) */ public FessMessages addErrorsNoUserForChangingPassword(String property) { assertPropertyNotNull(property); add(property, new UserMessage(ERRORS_no_user_for_changing_password)); return this; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 119.6K bytes - Viewed (0)