Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for SSO (0.14 sec)

  1. src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java

            Exception cause = new IllegalArgumentException("Invalid SSO token");
            SsoLoginException exception = new SsoLoginException("SSO error", cause);
    
            Throwable retrievedCause = exception.getCause();
            assertNotNull(retrievedCause);
            assertSame(cause, retrievedCause);
            assertEquals("Invalid SSO token", retrievedCause.getMessage());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

        }
    
        /**
         * SSO logout endpoint.
         *
         * This method handles SSO logout requests, coordinating with the SSO provider
         * to properly terminate the user's SSO session. It may involve redirecting
         * to the SSO provider's logout endpoint or performing local logout operations.
         *
         * @return ActionResponse directing to the logout page or SSO provider logout endpoint
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/SsoResponseType.java

     */
    package org.codelibs.fess.sso;
    
    /**
     * 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
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/SsoMessageException.java

    import org.codelibs.fess.mylasta.action.FessMessages;
    import org.lastaflute.web.validation.VaMessenger;
    
    /**
     * Exception thrown during SSO (Single Sign-On) processing with message code support.
     *
     * This exception is used to indicate errors that occur during SSO authentication
     * and authorization processes. It carries both a message code for internationalization
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/SsoManager.java

    import org.lastaflute.web.response.ActionResponse;
    
    /**
     * Manager class for coordinating SSO (Single Sign-On) authentication operations.
     *
     * This class serves as the central coordinator for SSO authentication in Fess.
     * It manages registered SSO authenticators, determines when SSO is available,
     * and delegates authentication operations to the appropriate SSO provider based
     * on the current configuration.
     */
    public class SsoManager {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java

     * 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.
     */
    public interface SsoAuthenticator {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

    import org.codelibs.fess.app.web.base.login.OpenIdConnectCredential;
    import org.codelibs.fess.crawler.Constants;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.sso.SsoAuthenticator;
    import org.codelibs.fess.sso.SsoResponseType;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalEntity;
    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
    - 15.3K bytes
    - Viewed (0)
  8. 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)
  9. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

            Exception rootCause = new Exception("Network timeout");
            Exception middleCause = new Exception("SSO provider unreachable", rootCause);
            SsoProcessException topException = new SsoProcessException("SSO authentication failed", middleCause);
    
            assertEquals("SSO authentication failed", topException.getMessage());
            assertEquals(middleCause, topException.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/SsoLoginException.java

     */
    package org.codelibs.fess.exception;
    
    /**
     * Exception thrown when SSO (Single Sign-On) login operations fail.
     *
     * This exception is used to indicate various SSO authentication failures
     * including configuration errors, authentication token validation failures,
     * communication issues with SSO providers, and other SSO-related problems.
     */
    public class SsoLoginException extends FessSystemException {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
Back to top