- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isLdapGroupNameWithUnderscores (0.12 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)