|
@@ -538,6 +538,9 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
/** The key of the configuration. e.g. SHA-512 */
|
|
/** The key of the configuration. e.g. SHA-512 */
|
|
String INDEX_ID_DIGEST_ALGORITHM = "index.id.digest.algorithm";
|
|
String INDEX_ID_DIGEST_ALGORITHM = "index.id.digest.algorithm";
|
|
|
|
|
|
|
|
+ /** The key of the configuration. e.g. admin */
|
|
|
|
+ String INDEX_USER_initial_password = "index.user.initial_password";
|
|
|
|
+
|
|
/** The key of the configuration. e.g. favorite_count */
|
|
/** The key of the configuration. e.g. favorite_count */
|
|
String INDEX_FIELD_favorite_count = "index.field.favorite_count";
|
|
String INDEX_FIELD_favorite_count = "index.field.favorite_count";
|
|
|
|
|
|
@@ -3506,6 +3509,13 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
*/
|
|
*/
|
|
String getIndexIdDigestAlgorithm();
|
|
String getIndexIdDigestAlgorithm();
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * Get the value for the key 'index.user.initial_password'. <br>
|
|
|
|
+ * The value is, e.g. admin <br>
|
|
|
|
+ * @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
|
|
+ */
|
|
|
|
+ String getIndexUserInitialPassword();
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Get the value for the key 'index.field.favorite_count'. <br>
|
|
* Get the value for the key 'index.field.favorite_count'. <br>
|
|
* The value is, e.g. favorite_count <br>
|
|
* The value is, e.g. favorite_count <br>
|
|
@@ -8463,6 +8473,10 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
return get(FessConfig.INDEX_ID_DIGEST_ALGORITHM);
|
|
return get(FessConfig.INDEX_ID_DIGEST_ALGORITHM);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getIndexUserInitialPassword() {
|
|
|
|
+ return get(FessConfig.INDEX_USER_initial_password);
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getIndexFieldFavoriteCount() {
|
|
public String getIndexFieldFavoriteCount() {
|
|
return get(FessConfig.INDEX_FIELD_favorite_count);
|
|
return get(FessConfig.INDEX_FIELD_favorite_count);
|
|
}
|
|
}
|
|
@@ -10786,6 +10800,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
defaultMap.put(FessConfig.INDEX_number_of_shards, "5");
|
|
defaultMap.put(FessConfig.INDEX_number_of_shards, "5");
|
|
defaultMap.put(FessConfig.INDEX_auto_expand_replicas, "0-1");
|
|
defaultMap.put(FessConfig.INDEX_auto_expand_replicas, "0-1");
|
|
defaultMap.put(FessConfig.INDEX_ID_DIGEST_ALGORITHM, "SHA-512");
|
|
defaultMap.put(FessConfig.INDEX_ID_DIGEST_ALGORITHM, "SHA-512");
|
|
|
|
+ defaultMap.put(FessConfig.INDEX_USER_initial_password, "admin");
|
|
defaultMap.put(FessConfig.INDEX_FIELD_favorite_count, "favorite_count");
|
|
defaultMap.put(FessConfig.INDEX_FIELD_favorite_count, "favorite_count");
|
|
defaultMap.put(FessConfig.INDEX_FIELD_click_count, "click_count");
|
|
defaultMap.put(FessConfig.INDEX_FIELD_click_count, "click_count");
|
|
defaultMap.put(FessConfig.INDEX_FIELD_config_id, "config_id");
|
|
defaultMap.put(FessConfig.INDEX_FIELD_config_id, "config_id");
|