Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isLdapAuthValidation (0.12 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. true <br>
         * comment: Whether to validate LDAP authentication.
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isLdapAuthValidation();
    
        /**
         * Get the value for the key 'ldap.max.username.length'. <br>
         * The value is, e.g. -1 <br>
         * comment: Maximum username length for LDAP.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            if (!isBind) {
                if (fessConfig.getLdapAdminSecurityPrincipal() == null || fessConfig.getLdapAdminSecurityCredentials() == null) {
                    // no credentials
                    return !fessConfig.isLdapAuthValidation();
                }
                try {
                    final Hashtable<String, String> env = createAdminEnv();
                    try (DirContextHolder holder = getDirContext(() -> env)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 08:06:20 GMT 2026
    - 85.2K bytes
    - Click Count (0)
Back to Top