- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for isLdapLowercasePermissionName (0.09 sec)
-
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
@Override public String getSmbAvailableSidTypes() { return "1,2,4:2,5:1"; } @Override public boolean isLdapLowercasePermissionName() { return false; } @Override public boolean isLdapIgnoreNetbiosName() { return false; } });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.7K bytes - Viewed (0) -
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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 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: 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 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)