Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for addChain (0.03 seconds)

  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);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  2. src/main/resources/app.xml

    	<component name="viewHelper" class="org.codelibs.fess.helper.ViewHelper">
    	</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"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 4K bytes
    - Click Count (0)
Back to Top