Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for addErrorsLoginError (0.08 seconds)

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

  1. src/main/java/org/codelibs/fess/app/web/login/LoginAction.java

                }
                activityHelper.loginFailure(OptionalThing.of(new LocalUserCredential(username, password)));
                throwValidationError(messages -> messages.addErrorsLoginError(GLOBAL), () -> asIndexPage(form));
            }
            return redirect(getClass());
        }
    
        /**
         * Handles password change for the current user.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 06:18:24 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java

                    }, validationErrorLambda);
                    return null;
                });
            }).orElse(() -> {
                throwValidationError(messages -> {
                    messages.addErrorsLoginError(GLOBAL);
                }, validationErrorLambda);
            });
        }
    
        /**
         * Adds a password validation error message to the messages object based on the error key.
         *
    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)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * <pre>
         * message: Invalid username or password.
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addErrorsLoginError(String property) {
            assertPropertyNotNull(property);
            add(property, new UserMessage(ERRORS_login_error));
            return this;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 126.6K bytes
    - Click Count (0)
Back to Top