|
@@ -537,6 +537,9 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
/** The key of the configuration. e.g. .fess_basic_config.bulk,.fess_config.bulk,.fess_user.bulk,system.properties */
|
|
/** The key of the configuration. e.g. .fess_basic_config.bulk,.fess_config.bulk,.fess_user.bulk,system.properties */
|
|
String INDEX_BACKUP_TARGETS = "index.backup.targets";
|
|
String INDEX_BACKUP_TARGETS = "index.backup.targets";
|
|
|
|
|
|
|
|
+ /** The key of the configuration. e.g. 4000 */
|
|
|
|
+ String FORM_ADMIN_MAX_INPUT_SIZE = "form.admin.max.input.size";
|
|
|
|
+
|
|
/** The key of the configuration. e.g. admin */
|
|
/** The key of the configuration. e.g. admin */
|
|
String AUTHENTICATION_ADMIN_USERS = "authentication.admin.users";
|
|
String AUTHENTICATION_ADMIN_USERS = "authentication.admin.users";
|
|
|
|
|
|
@@ -573,10 +576,10 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
/** The key of the configuration. e.g. FES */
|
|
/** The key of the configuration. e.g. FES */
|
|
String COOKIE_REMEMBER_ME_HARBOR_KEY = "cookie.remember.me.harbor.key";
|
|
String COOKIE_REMEMBER_ME_HARBOR_KEY = "cookie.remember.me.harbor.key";
|
|
|
|
|
|
- /** The key of the configuration. e.g. 4 */
|
|
|
|
|
|
+ /** The key of the configuration. e.g. 25 */
|
|
String PAGING_PAGE_SIZE = "paging.page.size";
|
|
String PAGING_PAGE_SIZE = "paging.page.size";
|
|
|
|
|
|
- /** The key of the configuration. e.g. 3 */
|
|
|
|
|
|
+ /** The key of the configuration. e.g. 5 */
|
|
String PAGING_PAGE_RANGE_SIZE = "paging.page.range.size";
|
|
String PAGING_PAGE_RANGE_SIZE = "paging.page.range.size";
|
|
|
|
|
|
/** The key of the configuration. e.g. true */
|
|
/** The key of the configuration. e.g. true */
|
|
@@ -2627,6 +2630,21 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
*/
|
|
*/
|
|
String getIndexBackupTargets();
|
|
String getIndexBackupTargets();
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Get the value for the key 'form.admin.max.input.size'. <br>
|
|
|
|
+ * The value is, e.g. 4000 <br>
|
|
|
|
+ * @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
|
|
+ */
|
|
|
|
+ String getFormAdminMaxInputSize();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Get the value for the key 'form.admin.max.input.size' as {@link Integer}. <br>
|
|
|
|
+ * The value is, e.g. 4000 <br>
|
|
|
|
+ * @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
|
|
+ * @throws NumberFormatException When the property is not integer.
|
|
|
|
+ */
|
|
|
|
+ Integer getFormAdminMaxInputSizeAsInteger();
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Get the value for the key 'authentication.admin.users'. <br>
|
|
* Get the value for the key 'authentication.admin.users'. <br>
|
|
* The value is, e.g. admin <br>
|
|
* The value is, e.g. admin <br>
|
|
@@ -2760,7 +2778,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
|
|
|
/**
|
|
/**
|
|
* Get the value for the key 'paging.page.size'. <br>
|
|
* Get the value for the key 'paging.page.size'. <br>
|
|
- * The value is, e.g. 4 <br>
|
|
|
|
|
|
+ * The value is, e.g. 25 <br>
|
|
* comment: The size of one page for paging
|
|
* comment: The size of one page for paging
|
|
* @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
* @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
*/
|
|
*/
|
|
@@ -2768,7 +2786,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
|
|
|
/**
|
|
/**
|
|
* Get the value for the key 'paging.page.size' as {@link Integer}. <br>
|
|
* Get the value for the key 'paging.page.size' as {@link Integer}. <br>
|
|
- * The value is, e.g. 4 <br>
|
|
|
|
|
|
+ * The value is, e.g. 25 <br>
|
|
* comment: The size of one page for paging
|
|
* comment: The size of one page for paging
|
|
* @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
* @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
* @throws NumberFormatException When the property is not integer.
|
|
* @throws NumberFormatException When the property is not integer.
|
|
@@ -2777,7 +2795,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
|
|
|
/**
|
|
/**
|
|
* Get the value for the key 'paging.page.range.size'. <br>
|
|
* Get the value for the key 'paging.page.range.size'. <br>
|
|
- * The value is, e.g. 3 <br>
|
|
|
|
|
|
+ * The value is, e.g. 5 <br>
|
|
* comment: The size of page range for paging
|
|
* comment: The size of page range for paging
|
|
* @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
* @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
*/
|
|
*/
|
|
@@ -2785,7 +2803,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
|
|
|
/**
|
|
/**
|
|
* Get the value for the key 'paging.page.range.size' as {@link Integer}. <br>
|
|
* Get the value for the key 'paging.page.range.size' as {@link Integer}. <br>
|
|
- * The value is, e.g. 3 <br>
|
|
|
|
|
|
+ * The value is, e.g. 5 <br>
|
|
* comment: The size of page range for paging
|
|
* comment: The size of page range for paging
|
|
* @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
* @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
* @throws NumberFormatException When the property is not integer.
|
|
* @throws NumberFormatException When the property is not integer.
|
|
@@ -5210,6 +5228,14 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
return get(FessConfig.INDEX_BACKUP_TARGETS);
|
|
return get(FessConfig.INDEX_BACKUP_TARGETS);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getFormAdminMaxInputSize() {
|
|
|
|
+ return get(FessConfig.FORM_ADMIN_MAX_INPUT_SIZE);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getFormAdminMaxInputSizeAsInteger() {
|
|
|
|
+ return getAsInteger(FessConfig.FORM_ADMIN_MAX_INPUT_SIZE);
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getAuthenticationAdminUsers() {
|
|
public String getAuthenticationAdminUsers() {
|
|
return get(FessConfig.AUTHENTICATION_ADMIN_USERS);
|
|
return get(FessConfig.AUTHENTICATION_ADMIN_USERS);
|
|
}
|
|
}
|