- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for SsoResponseType (0.06 sec)
-
src/main/java/org/codelibs/fess/sso/SsoResponseType.java
/** * Represents the type of SSO (Single Sign-On) response being requested. * This enum is used to differentiate between various SSO operations, * such as metadata requests and logout actions. */ public enum SsoResponseType { /** * Indicates a request for SSO metadata, which is typically used for * configuration and discovery in protocols like SAML. */ METADATA, /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoResponseTypeTest.java
assertTrue(SsoResponseType.METADATA.equals(SsoResponseType.METADATA)); assertTrue(SsoResponseType.LOGOUT.equals(SsoResponseType.LOGOUT)); assertFalse(SsoResponseType.METADATA.equals(SsoResponseType.LOGOUT)); assertFalse(SsoResponseType.LOGOUT.equals(SsoResponseType.METADATA)); assertFalse(SsoResponseType.METADATA.equals(null)); assertFalse(SsoResponseType.METADATA.equals("METADATA")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
import org.codelibs.fess.app.web.search.SearchAction; import org.codelibs.fess.entity.RequestParameter; import org.codelibs.fess.exception.SsoMessageException; import org.codelibs.fess.sso.SsoManager; import org.codelibs.fess.sso.SsoResponseType; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalThing; import org.lastaflute.web.Execute; import org.lastaflute.web.UrlChain; import org.lastaflute.web.login.credential.LoginCredential;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
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. * @return The logout URL or null if not applicable. */ String logout(FessUserBean user);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoManager.java
* @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(); if (authenticator != null) { return authenticator.getResponse(responseType);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0)