Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isLdapGroupNameWithUnderscores (0.09 sec)

  1. src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java

            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                public boolean isLdapIgnoreNetbiosName() {
                    return true;
                }
    
                public boolean isLdapGroupNameWithUnderscores() {
                    return false;
                }
            });
            LdapManager ldapManager = new LdapManager();
            ldapManager.init();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            }
            start += 3;
    
            final int end = entryDn.indexOf(',', start);
            final String value = end == -1 ? entryDn.substring(start) : entryDn.substring(start, end);
            if (fessConfig.isLdapGroupNameWithUnderscores()) {
                return replaceWithUnderscores(value);
            }
            return value;
        }
    
        /**
         * Replaces special characters in a string with underscores for group names.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Whether to allow underscores in LDAP group names.
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isLdapGroupNameWithUnderscores();
    
        /**
         * Get the value for the key 'ldap.lowercase.permission.name'. <br>
         * The value is, e.g. false <br>
         * comment: Whether to use lowercase for LDAP permission names.
    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