Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for samluser (0.12 sec)

  1. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            if (user.getFessUser() instanceof SamlUser) {
                return LaRequestUtil.getOptionalRequest().map(request -> {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Logging out with SAML Authenticator");
                    }
                    final HttpServletResponse response = LaResponseUtil.getResponse();
                    final SamlUser samlUser = (SamlUser) user.getFessUser();
                    try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.4K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java

        }
    
        @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(),
                    getDefaultRolesAsArray());
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  3. 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)
Back to top