Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isLdapGroupNameWithUnderscores (0.16 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 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;
        }
    
        protected String replaceWithUnderscores(final String value) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. false <br>
         * @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>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
Back to top