Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isLdapAdminSyncPassword (0.1 sec)

  1. src/main/java/org/codelibs/fess/auth/chain/LdapChain.java

            final boolean changed = ComponentUtil.getLdapManager().changePassword(username, password);
            return !changed || ComponentUtil.getFessConfig().isLdapAdminSyncPassword();
        }
    
        @Override
        public User load(final User user) {
            ComponentUtil.getLdapManager().apply(user);
            return user;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java

            private static final long serialVersionUID = 1L;
    
            boolean ldapAdminSyncPassword = false;
    
            @Override
            public boolean isLdapAdminSyncPassword() {
                return ldapAdminSyncPassword;
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. true <br>
         * comment: Whether to sync password for LDAP admin.
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isLdapAdminSyncPassword();
    
        /**
         * Get the value for the key 'ldap.auth.validation'. <br>
         * The value is, e.g. true <br>
         * comment: Whether to validate LDAP authentication.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top