- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 14 for responseType (0.05 seconds)
-
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.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.2K bytes - Click Count (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();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 5.3K bytes - Click Count (0) -
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; } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.2K bytes - Click Count (1) -
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. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:18:23 GMT 2026 - 18.2K bytes - Click Count (3) -
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.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 03:13:33 GMT 2026 - 20.2K bytes - Click Count (3) -
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; } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.5K bytes - Click Count (0) -
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; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Dec 14 01:18:25 GMT 2025 - 16.5K bytes - Click Count (0) -
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)}...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:49:09 GMT 2024 - 45.3K bytes - Click Count (0) -
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...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:49:09 GMT 2024 - 132.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
*/ public void setMaxGroupDepth(final int maxGroupDepth) { this.maxGroupDepth = maxGroupDepth; } @Override public ActionResponse getResponse(final SsoResponseType responseType) { return null; } @Override public String logout(final FessUserBean user) { return null; } /** * Enable to use V2 endpoint.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:03:27 GMT 2026 - 56.8K bytes - Click Count (0)