- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for isLdapLowercasePermissionName (1.32 sec)
-
src/main/java/org/codelibs/fess/helper/SambaHelper.java
* @param type The SID type. * @param name The account name. * @return The search role. */ protected String createSearchRole(final int type, final String name) { if (fessConfig.isLdapLowercasePermissionName()) { return type + fessConfig.getCanonicalLdapName(name).toLowerCase(Locale.ROOT); } return type + fessConfig.getCanonicalLdapName(name); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
* * @param name the permission name to normalize * @return the normalized permission name */ public String normalizePermissionName(final String name) { if (fessConfig.isLdapLowercasePermissionName()) { return name.toLowerCase(Locale.ROOT); } return name; } /** * Processes search results to extract roles using a BiConsumer. *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 use lowercase for LDAP permission names. * @return The determination, true or false. (if not found, exception but basically no way) */ boolean isLdapLowercasePermissionName(); /** * Get the value for the key 'ldap.allow.empty.permission'. <br> * The value is, e.g. true <br> * comment: Whether to allow empty permissions in LDAP.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)