Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SAML (0.01 sec)

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

    import jakarta.servlet.http.HttpSession;
    
    /**
     * Authenticator for SAML.
     */
    public class SamlAuthenticator implements SsoAuthenticator {
    
        /**
         * Constructor.
         */
        public SamlAuthenticator() {
            super();
        }
    
        private static final Logger logger = LogManager.getLogger(SamlAuthenticator.class);
    
        /**
         * The prefix for SAML properties.
         */
    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/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)
  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)
  4. 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)
  5. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

        }
    
        public void test_variousTokenTypes() {
            // Test with various common token types
            String[] tokenTypes = { "Bearer", "JWT", "OAuth", "OAuth2", "APIKey", "Session", "Basic", "Digest", "SAML", "OpenID" };
    
            for (String tokenType : tokenTypes) {
                String message = tokenType + " token is invalid";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  6. pom.xml

    			<artifactId>okhttp</artifactId>
    			<version>${okhttp.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs</groupId>
    			<artifactId>java-saml</artifactId>
    			<version>${java.saml.version}</version>
    			<exclusions>
    				<exclusion>
    					<groupId>jakarta.xml.bind</groupId>
    					<artifactId>jakarta.xml.bind-api</artifactId>
    				</exclusion>
    			</exclusions>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
Back to top