|
@@ -357,6 +357,9 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
/** The key of the configuration. e.g. doc */
|
|
|
String INDEX_DOCUMENT_TYPE = "index.document.type";
|
|
|
|
|
|
+ /** The key of the configuration. e.g. fess */
|
|
|
+ String INDEX_DOCUMENT_SUGGEST_INDEX = "index.document.suggest.index";
|
|
|
+
|
|
|
/** The key of the configuration. e.g. lang,role,label,anchor */
|
|
|
String INDEX_ADMIN_ARRAY_FIELDS = "index.admin.array.fields";
|
|
|
|
|
@@ -2026,6 +2029,13 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
*/
|
|
|
String getIndexDocumentType();
|
|
|
|
|
|
+ /**
|
|
|
+ * Get the value for the key 'index.document.suggest.index'. <br>
|
|
|
+ * The value is, e.g. fess <br>
|
|
|
+ * @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
|
+ */
|
|
|
+ String getIndexDocumentSuggestIndex();
|
|
|
+
|
|
|
/**
|
|
|
* Get the value for the key 'index.admin.array.fields'. <br>
|
|
|
* The value is, e.g. lang,role,label,anchor <br>
|
|
@@ -4662,6 +4672,10 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
return get(FessConfig.INDEX_DOCUMENT_TYPE);
|
|
|
}
|
|
|
|
|
|
+ public String getIndexDocumentSuggestIndex() {
|
|
|
+ return get(FessConfig.INDEX_DOCUMENT_SUGGEST_INDEX);
|
|
|
+ }
|
|
|
+
|
|
|
public String getIndexAdminArrayFields() {
|
|
|
return get(FessConfig.INDEX_ADMIN_ARRAY_FIELDS);
|
|
|
}
|