Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

     * This class coordinates user operations across different authentication providers.
     */
    public class AuthenticationManager {
        /** Array of authentication chains to process user operations. */
        protected AuthenticationChain[] chains = {};
    
        /**
         * Default constructor for AuthenticationManager.
         */
        public AuthenticationManager() {
            // Default constructor
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

        private AuthenticationManager authenticationManager;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            authenticationManager = new AuthenticationManager();
        }
    
        // Test default constructor
        public void test_constructor() {
            AuthenticationManager manager = new AuthenticationManager();
            assertNotNull(manager);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ComponentUtil.java

    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.crypto.CachedCipher;
    import org.codelibs.core.misc.DynamicProperties;
    import org.codelibs.fess.api.WebApiManagerFactory;
    import org.codelibs.fess.auth.AuthenticationManager;
    import org.codelibs.fess.cors.CorsHandlerFactory;
    import org.codelibs.fess.crawler.client.CrawlerClientCreator;
    import org.codelibs.fess.crawler.client.CrawlerClientFactory;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
Back to top