|
@@ -1115,6 +1115,9 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
/** The key of the configuration. e.g. true */
|
|
|
String OSDD_LINK_ENABLED = "osdd.link.enabled";
|
|
|
|
|
|
+ /** The key of the configuration. e.g. true */
|
|
|
+ String CLIPBOARD_COPY_ICON_ENABLED = "clipboard.copy.icon.enabled";
|
|
|
+
|
|
|
/** The key of the configuration. e.g. admin */
|
|
|
String AUTHENTICATION_ADMIN_USERS = "authentication.admin.users";
|
|
|
|
|
@@ -5156,6 +5159,20 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
*/
|
|
|
boolean isOsddLinkEnabled();
|
|
|
|
|
|
+ /**
|
|
|
+ * Get the value for the key 'clipboard.copy.icon.enabled'. <br>
|
|
|
+ * The value is, e.g. true <br>
|
|
|
+ * @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
|
+ */
|
|
|
+ String getClipboardCopyIconEnabled();
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Is the property for the key 'clipboard.copy.icon.enabled' true? <br>
|
|
|
+ * The value is, e.g. true <br>
|
|
|
+ * @return The determination, true or false. (if not found, exception but basically no way)
|
|
|
+ */
|
|
|
+ boolean isClipboardCopyIconEnabled();
|
|
|
+
|
|
|
/**
|
|
|
* Get the value for the key 'authentication.admin.users'. <br>
|
|
|
* The value is, e.g. admin <br>
|
|
@@ -9021,6 +9038,14 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
return is(FessConfig.OSDD_LINK_ENABLED);
|
|
|
}
|
|
|
|
|
|
+ public String getClipboardCopyIconEnabled() {
|
|
|
+ return get(FessConfig.CLIPBOARD_COPY_ICON_ENABLED);
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isClipboardCopyIconEnabled() {
|
|
|
+ return is(FessConfig.CLIPBOARD_COPY_ICON_ENABLED);
|
|
|
+ }
|
|
|
+
|
|
|
public String getAuthenticationAdminUsers() {
|
|
|
return get(FessConfig.AUTHENTICATION_ADMIN_USERS);
|
|
|
}
|
|
@@ -10489,6 +10514,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
defaultMap.put(FessConfig.FORM_ADMIN_LABEL_IN_CONFIG_ENABLED, "false");
|
|
|
defaultMap.put(FessConfig.FORM_ADMIN_DEFAULT_TEMPLATE_NAME, "__TEMPLATE__");
|
|
|
defaultMap.put(FessConfig.OSDD_LINK_ENABLED, "true");
|
|
|
+ defaultMap.put(FessConfig.CLIPBOARD_COPY_ICON_ENABLED, "true");
|
|
|
defaultMap.put(FessConfig.AUTHENTICATION_ADMIN_USERS, "admin");
|
|
|
defaultMap.put(FessConfig.AUTHENTICATION_ADMIN_ROLES, "admin");
|
|
|
defaultMap.put(FessConfig.ROLE_SEARCH_DEFAULT_PERMISSIONS, "");
|