- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getLdapAdminGroupBaseDn (0.09 sec)
-
src/main/java/org/codelibs/fess/ldap/LdapManager.java
final List<String> groupList = new ArrayList<>(); final List<String> roleList = new ArrayList<>(); final String lowerGroupDn = fessConfig.getLdapAdminGroupBaseDn().toLowerCase(Locale.ROOT); final String lowerRoleDn = fessConfig.getLdapAdminRoleBaseDn().toLowerCase(Locale.ROOT); processSearchRoles(result, (entryDn, name) -> {
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/FessProp.java
} String getLdapAdminGroupBaseDn(); default String getLdapAdminGroupSecurityPrincipal(final String name) { final StringBuilder buf = new StringBuilder(100); buf.append(String.format(getLdapAdminGroupFilter(), name)); if (StringUtil.isNotBlank(getLdapAdminGroupBaseDn())) { buf.append(',').append(getLdapAdminGroupBaseDn()); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 88.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* comment: Base DN for LDAP admin group. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getLdapAdminGroupBaseDn(); /** * Get the value for the key 'ldap.admin.group.object.classes'. <br> * The value is, e.g. groupOfNames <br> * comment: Object classes for LDAP admin group.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)