Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for addChain (0.05 sec)

  1. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

            TestAuthenticationChain chain2 = new TestAuthenticationChain();
            TestAuthenticationChain chain3 = new TestAuthenticationChain();
    
            authenticationManager.addChain(chain1);
            authenticationManager.addChain(chain2);
            authenticationManager.addChain(chain3);
    
            authenticationManager.insert(user);
    
            assertEquals(1, chain1.updateCallCount);
            assertEquals(1, chain2.updateCallCount);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

                u = chain.load(u);
            }
            return u;
        }
    
        /**
         * Adds an authentication chain to the manager.
         * @param chain The authentication chain to add.
         */
        public void addChain(final AuthenticationChain chain) {
            chains = ArrayUtils.addAll(chains, chain);
        }
    
        /**
         * Returns a stream of authentication chains.
         * @return A stream wrapper of the authentication chains.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  3. src/main/resources/app.xml

    	<component name="userInfoHelper" class="org.codelibs.fess.helper.UserInfoHelper">
    	</component>
    	<component name="authenticationManager" class="org.codelibs.fess.auth.AuthenticationManager">
    		<!--
    		<postConstruct name="addChain">
    			<arg>
    				<component class="org.codelibs.fess.auth.chain.CommandChain">
    					<property name="updateCommand">[
    					"/usr/sbin/htpasswd",
    					"-b",
    					"/tmp/test.txt",
    					"$USERNAME",
    					"$PASSWORD"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Nov 19 02:22:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top