|
@@ -1508,6 +1508,9 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
/** The key of the configuration. e.g. false */
|
|
/** The key of the configuration. e.g. false */
|
|
String LDAP_GROUP_NAME_WITH_UNDERSCORES = "ldap.group.name.with.underscores";
|
|
String LDAP_GROUP_NAME_WITH_UNDERSCORES = "ldap.group.name.with.underscores";
|
|
|
|
|
|
|
|
+ /** The key of the configuration. e.g. false */
|
|
|
|
+ String LDAP_LOWERCASE_PERMISSION_NAME = "ldap.lowercase.permission.name";
|
|
|
|
+
|
|
/** The key of the configuration. e.g. true */
|
|
/** The key of the configuration. e.g. true */
|
|
String LDAP_ROLE_SEARCH_USER_ENABLED = "ldap.role.search.user.enabled";
|
|
String LDAP_ROLE_SEARCH_USER_ENABLED = "ldap.role.search.user.enabled";
|
|
|
|
|
|
@@ -6437,6 +6440,20 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
*/
|
|
*/
|
|
boolean isLdapGroupNameWithUnderscores();
|
|
boolean isLdapGroupNameWithUnderscores();
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Get the value for the key 'ldap.lowercase.permission.name'. <br>
|
|
|
|
+ * The value is, e.g. false <br>
|
|
|
|
+ * @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
|
|
+ */
|
|
|
|
+ String getLdapLowercasePermissionName();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Is the property for the key 'ldap.lowercase.permission.name' true? <br>
|
|
|
|
+ * The value is, e.g. false <br>
|
|
|
|
+ * @return The determination, true or false. (if not found, exception but basically no way)
|
|
|
|
+ */
|
|
|
|
+ boolean isLdapLowercasePermissionName();
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Get the value for the key 'ldap.role.search.user.enabled'. <br>
|
|
* Get the value for the key 'ldap.role.search.user.enabled'. <br>
|
|
* The value is, e.g. true <br>
|
|
* The value is, e.g. true <br>
|
|
@@ -9271,6 +9288,14 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
return is(FessConfig.LDAP_GROUP_NAME_WITH_UNDERSCORES);
|
|
return is(FessConfig.LDAP_GROUP_NAME_WITH_UNDERSCORES);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getLdapLowercasePermissionName() {
|
|
|
|
+ return get(FessConfig.LDAP_LOWERCASE_PERMISSION_NAME);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public boolean isLdapLowercasePermissionName() {
|
|
|
|
+ return is(FessConfig.LDAP_LOWERCASE_PERMISSION_NAME);
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getLdapRoleSearchUserEnabled() {
|
|
public String getLdapRoleSearchUserEnabled() {
|
|
return get(FessConfig.LDAP_ROLE_SEARCH_USER_ENABLED);
|
|
return get(FessConfig.LDAP_ROLE_SEARCH_USER_ENABLED);
|
|
}
|
|
}
|
|
@@ -9900,6 +9925,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
defaultMap.put(FessConfig.LDAP_MAX_USERNAME_LENGTH, "-1");
|
|
defaultMap.put(FessConfig.LDAP_MAX_USERNAME_LENGTH, "-1");
|
|
defaultMap.put(FessConfig.LDAP_IGNORE_NETBIOS_NAME, "true");
|
|
defaultMap.put(FessConfig.LDAP_IGNORE_NETBIOS_NAME, "true");
|
|
defaultMap.put(FessConfig.LDAP_GROUP_NAME_WITH_UNDERSCORES, "false");
|
|
defaultMap.put(FessConfig.LDAP_GROUP_NAME_WITH_UNDERSCORES, "false");
|
|
|
|
+ defaultMap.put(FessConfig.LDAP_LOWERCASE_PERMISSION_NAME, "false");
|
|
defaultMap.put(FessConfig.LDAP_ROLE_SEARCH_USER_ENABLED, "true");
|
|
defaultMap.put(FessConfig.LDAP_ROLE_SEARCH_USER_ENABLED, "true");
|
|
defaultMap.put(FessConfig.LDAP_ROLE_SEARCH_GROUP_ENABLED, "true");
|
|
defaultMap.put(FessConfig.LDAP_ROLE_SEARCH_GROUP_ENABLED, "true");
|
|
defaultMap.put(FessConfig.LDAP_ROLE_SEARCH_ROLE_ENABLED, "true");
|
|
defaultMap.put(FessConfig.LDAP_ROLE_SEARCH_ROLE_ENABLED, "true");
|