Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for SSO (0.17 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/exception/SsoProcessException.java

     */
    package org.codelibs.fess.exception;
    
    /**
     * Exception thrown during SSO (Single Sign-On) processing operations.
     *
     * This exception is used to indicate errors that occur during the execution
     * of SSO authentication and authorization processes. It extends FessSystemException
     * to provide consistent error handling within the Fess system for SSO-related
     * processing failures such as token validation errors, communication failures
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. src/main/resources/fess_sso.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components>
    	<component name="ssoManager" class="org.codelibs.fess.sso.SsoManager">
    	</component>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 16 13:50:30 UTC 2019
    - 256 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

    import org.codelibs.fess.exception.SsoLoginException;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.sso.SsoAuthenticator;
    import org.codelibs.fess.sso.SsoResponseType;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.spnego.SpnegoFilterConfig;
    import org.codelibs.spnego.SpnegoHttpFilter;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            defaultSettings.put("onelogin.saml2.sp.assertion_consumer_service.url", "http://localhost:8080/sso/");
            defaultSettings.put("onelogin.saml2.sp.assertion_consumer_service.binding", "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST");
            defaultSettings.put("onelogin.saml2.sp.single_logout_service.url", "http://localhost:8080/sso/logout");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.4K bytes
    - Viewed (1)
  6. src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.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.spnego;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class SpnegoAuthenticatorTest 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)
  7. src/test/java/org/codelibs/fess/sso/aad/AzureAdAuthenticatorTest.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.aad;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class AzureAdAuthenticatorTest extends UnitFessTestCase {
        public void test_addGroupOrRoleName() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         * @return The permission helper.
         */
        public static PermissionHelper getPermissionHelper() {
            return getComponent(PERMISSION_HELPER);
        }
    
        /**
         * Gets the SSO manager component.
         * @return The SSO manager.
         */
        public static SsoManager getSsoManager() {
            return getComponent(SSO_MANAGER);
        }
    
        /**
         * Gets the thumbnail manager component.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java

    public class SsoMessageExceptionTest extends UnitFessTestCase {
    
        public void test_constructor_withMessageCodeMessageAndCause() {
            // Setup
            final String message = "Test SSO error message";
            final Exception cause = new RuntimeException("Test cause");
            final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsSsoLoginError(UserMessages.GLOBAL_PROPERTY_KEY);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/sso/SsoManagerTest.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;
    
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.app.web.base.login.FessLoginAssist.LoginCredentialResolver;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    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