- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isLdapGroupNameWithUnderscores (0.77 sec)
-
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 86.3K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)