- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for isLdapGroupNameWithUnderscores (0.16 sec)
-
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) -
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) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1)