- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 31 for SAML (0.02 seconds)
-
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
* saml.sp.single_logout_service.url=https://your-fess-server.example.com/sso/logout * </pre> * * <h2>Complete Configuration Example (Okta)</h2> * <pre> * sso.type=saml * * # IdP settings from Okta SAML setup instructions * saml.idp.entityid=http://www.okta.com/your-app-id * saml.idp.single_sign_on_service.url=https://your-domain.okta.com/app/your-app/your-app-id/sso/saml
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/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
/** SAML service provider base URL. */ @Size(max = 1000) public String samlSpBaseUrl; /** SAML attribute name for group membership. */ @Size(max = 1000) public String samlAttributeGroupName; /** SAML attribute name for role membership. */ @Size(max = 1000) public String samlAttributeRoleName; /** SAML default groups. */ @Size(max = 1000)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 15.8K bytes - Click Count (0) -
CLAUDE.md
- Full-text search with OpenSearch backend - Web, file system, and data store crawling - Multi-format document support (Office, PDF, etc.) - Admin GUI for configuration - REST API for programmatic access - SSO integration (OIDC, SAML, SPNEGO, Entra ID) - i18n support (20+ languages) ## Tech Stack | Component | Technology | |-----------|------------| | Web Framework | LastaFlute (MVC framework) | | DI Container | Lasta Di |
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 09:48:10 GMT 2026 - 7.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
// SAML fessConfig.setSystemProperty("saml.sp.base.url", form.samlSpBaseUrl); fessConfig.setSystemProperty("saml.attribute.group.name", form.samlAttributeGroupName); fessConfig.setSystemProperty("saml.attribute.role.name", form.samlAttributeRoleName); fessConfig.setSystemProperty("saml.default.groups", form.samlDefaultGroups);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 05:54:31 GMT 2026 - 27.2K bytes - Click Count (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());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
} finally { // Clean up systemProperties.remove("saml.sp.base.url"); } } @Test public void test_buildDefaultUrl_allEndpoints() throws Exception { // Test all SAML endpoints are built correctly SamlAuthenticator authenticator = new SamlAuthenticator();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 18.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
@Test 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);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/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
} @Test 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) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 13.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java
assertNull(IpAddressUtil.buildUrl("http", (String) null, 8080, "/path")); } @Test public void testRealWorldScenarios() throws UnknownHostException { // Scenario 1: SAML entityId for IPv6 InetAddress localhost = InetAddress.getByName("localhost"); String entityId = IpAddressUtil.buildUrl("http", localhost, 8080, "/sso/metadata"); assertTrue(entityId.startsWith("http://"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 08:31:03 GMT 2025 - 8.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.7K bytes - Click Count (0)