Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for responseType (0.12 sec)

  1. src/main/java/org/codelibs/fess/sso/SsoManager.java

        /**
         * Gets the appropriate response for the specified SSO response type.
         *
         * @param responseType The type of SSO response required (e.g., METADATA, LOGOUT)
         * @return The action response from the SSO authenticator, or null if SSO is not available
         */
        public ActionResponse getResponse(final SsoResponseType responseType) {
            if (available()) {
                final SsoAuthenticator authenticator = getAuthenticator();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java

        /**
         * Gets the action response for the specified SSO response type.
         * @param responseType The type of SSO response required.
         * @return The action response.
         */
        ActionResponse getResponse(SsoResponseType responseType);
    
        /**
         * Performs logout for the specified user.
         * @param user The user to logout.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

                this.lastResolver = resolver;
                this.resolverCalled = true;
            }
    
            @Override
            public ActionResponse getResponse(SsoResponseType responseType) {
                return responseMap.get(responseType);
            }
    
            @Override
            public String logout(FessUserBean userBean) {
                this.lastLogoutUser = userBean;
                return logoutUrl;
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

                    return null;
                }).orElse(null);
            }
            return null;
        }
    
        @Override
        public ActionResponse getResponse(final SsoResponseType responseType) {
            return switch (responseType) {
            case METADATA -> getMetadataResponse();
            case LOGOUT -> getLogoutResponse();
            default -> null;
            };
        }
    
        /**
         * Gets the metadata response.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.4K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

         * for metadata or logout operations, so this method returns null.
         *
         * @param responseType The type of SSO response requested
         * @return Always returns null for SPNEGO authentication
         */
        @Override
        public ActionResponse getResponse(final SsoResponseType responseType) {
            return null;
        }
    
        /**
         * Performs logout for the specified user.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/adminlte.min.js

    ontent&&(""!==e._settings.sourceSelector&&(t=n.default(t).find(e._settings.sourceSelector).html()),e._parent.find(e._settings.content).html(t)),e._settings.onLoadDone.call(n.default(e),t),e._removeOverlay()}),""!==this._settings.responseType&&this._settings.responseType).fail((function(t,a,i){if(e._removeOverlay(),e._settings.loadErrorTemplate){var o=n.default(e._settings.errorTemplate).text(i);e._parent.find(e._settings.content).empty().append(o)}e._settings.onLoadFail.call(n.default(e),t,a,i)}...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

            resolver.resolve(OpenIdConnectCredential.class, credential -> OptionalEntity.of(credential.getUser()));
        }
    
        @Override
        public ActionResponse getResponse(final SsoResponseType responseType) {
            return null;
        }
    
        @Override
        public String logout(final FessUserBean user) {
            return null;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

            public void resolveCredential(LoginCredentialResolver resolver) {
                // Not used in these tests
            }
    
            @Override
            public ActionResponse getResponse(SsoResponseType responseType) {
                return actionResponse;
            }
    
            @Override
            public String logout(FessUserBean user) {
                return logoutUrl;
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/adminlte.min.js.map

    gs.sourceSelector).html()\n        }\n\n        this._parent.find(this._settings.content).html(response)\n      }\n\n      this._settings.onLoadDone.call($(this), response)\n      this._removeOverlay()\n    }, this._settings.responseType !== '' && this._settings.responseType)\n    .fail((jqXHR, textStatus, errorThrown) => {\n      this._removeOverlay()\n\n      if (this._settings.loadErrorTemplate) {\n        const msg = $(this._settings.errorTemplate).text(errorThrown)\n        this._parent.fin...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 132.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

         */
        public void setGroupCacheExpiry(final long groupCacheExpiry) {
            this.groupCacheExpiry = groupCacheExpiry;
        }
    
        @Override
        public ActionResponse getResponse(final SsoResponseType responseType) {
            return null;
        }
    
        @Override
        public String logout(final FessUserBean user) {
            return null;
        }
    
        /**
         * Enable to use V2 endpoint.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
Back to top