- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 679 for saml (0.01 sec)
-
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
public String toString() { return "{" + getUserId() + "}"; } @Override public String getUserId() { return nameId; } /** * Gets the SAML user. * @return The SAML user. */ public SamlUser getUser() { return new SamlUser(nameId, sessionIndex, nameIdFormat, nameidNameQualifier, nameidSPNameQualifier, getDefaultGroupsAsArray(),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
import org.codelibs.fess.sso.SsoResponseType; import org.codelibs.fess.util.ComponentUtil; import org.codelibs.saml2.Auth; import org.codelibs.saml2.core.authn.AuthnRequestParams; import org.codelibs.saml2.core.logout.LogoutRequestParams; import org.codelibs.saml2.core.settings.Saml2Settings; import org.codelibs.saml2.core.settings.SettingsBuilder; import org.dbflute.optional.OptionalEntity; import org.lastaflute.core.message.UserMessages;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/sso/SsoResponseType.java
* 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, /** * Indicates a request to perform a logout operation, terminating the * user's SSO session. */ LOGOUT;
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/main/resources/fess_sso++.xml
</component> <component name="oicAuthenticator" class="org.codelibs.fess.sso.oic.OpenIdConnectAuthenticator"> </component> <component name="samlAuthenticator" class="org.codelibs.fess.sso.saml.SamlAuthenticator"> </component> <component name="spnegoAuthenticator" class="org.codelibs.fess.sso.spnego.SpnegoAuthenticator"> </component>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 04 00:28:21 UTC 2020 - 604 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.sso.saml; import org.codelibs.fess.unit.UnitFessTestCase; public class SamlAuthenticatorTest extends UnitFessTestCase { @Override public void setUp() throws Exception { super.setUp(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
// Test full integration scenarios public void test_fullScenario_ssoEnabled() { currentSsoType = "saml"; final LoginCredential expectedCredential = new TestLoginCredential("samluser"); final ActionResponse expectedResponse = HtmlResponse.asEmptyBody(); final String expectedLogoutUrl = "https://saml.example.com/logout"; testAuthenticator.setLoginCredential(expectedCredential);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java
* Interface for SSO (Single Sign-On) authenticator implementations. * * This interface defines the contract for SSO authentication providers that can be * integrated with Fess. Implementations handle specific SSO protocols like SAML, * OAuth, SPNEGO, or other authentication mechanisms. Each authenticator is responsible * for obtaining login credentials, resolving user information, and managing SSO * lifecycle operations like logout and metadata exchange.
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/test/java/org/codelibs/fess/helper/OsddHelperTest.java
@Override public String getOsddLinkEnabled() { return "auto"; } @Override public String getSsoType() { return "saml"; } }); final OsddHelper osddHelper = new OsddHelper(); osddHelper.setOsddPath("osdd/osdd.xml"); osddHelper.init(); assertFalse(osddHelper.hasOpenSearchFile());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 23.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
} } public void test_throwAndCatchWithCause() { // Test throwing and catching the exception with cause String expectedMessage = "SAML assertion validation failed"; Exception expectedCause = new IllegalStateException("Invalid SAML response"); try { throw new SsoProcessException(expectedMessage, expectedCause); } catch (SsoProcessException e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
return redirect(LoginAction.class); } } /** * SSO metadata endpoint. * * This method handles requests for SSO metadata, typically used by SAML or * other SSO protocols that require metadata exchange. The actual metadata * content is generated by the configured SSO authenticator. * * @return ActionResponse containing the SSO metadata or error page
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0)