Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ActionResponseCredential (0.23 sec)

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

    import org.lastaflute.web.login.credential.LoginCredential;
    import org.lastaflute.web.response.ActionResponse;
    
    public class ActionResponseCredential implements LoginCredential {
    
        private final Supplier<ActionResponse> action;
    
        public ActionResponseCredential(final Supplier<ActionResponse> action) {
            this.action = action;
        }
    
        public ActionResponse execute() {
            return action.get();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

                    saveError(messages -> messages.addErrorsSsoLoginError(GLOBAL));
                }
                return redirect(LoginAction.class);
            }
            if (loginCredential instanceof ActionResponseCredential) {
                return ((ActionResponseCredential) loginCredential).execute();
            }
            try {
                return fessLoginAssist.loginRedirect(loginCredential, op -> {}, () -> {
                    activityHelper.login(getUserBean());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top