Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for SpnegoConfig (0.05 seconds)

  1. src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java

            // Verify the inner SpnegoConfig class exists and is properly named
            // This test ensures the typo fix (SpengoConfig -> SpnegoConfig) is correct
            try {
                Class<?> configClass = Class.forName("org.codelibs.fess.sso.spnego.SpnegoAuthenticator$SpnegoConfig");
                assertNotNull(configClass);
                assertEquals("SpnegoConfig", configClass.getSimpleName());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

         * authentication modules, and security options.
         */
        protected static class SpnegoConfig implements FilterConfig {
    
            /**
             * Constructs a new SPNEGO filter configuration.
             */
            public SpnegoConfig() {
                // do nothing
            }
    
            /**
             * Gets the filter name for this SPNEGO configuration.
             *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
Back to Top