Update to 5.6.0-PRE7_NIH-SNAPSHOT and activate advanced index
This commit is contained in:
@@ -23,6 +23,7 @@ public class AppProperties {
|
||||
|
||||
private Boolean cql_enabled = false;
|
||||
private Boolean mdm_enabled = false;
|
||||
private boolean advanced_lucene_indexing = false;
|
||||
private Boolean allow_cascading_deletes = false;
|
||||
private Boolean allow_contains_searches = true;
|
||||
private Boolean allow_external_references = false;
|
||||
@@ -206,7 +207,15 @@ public class AppProperties {
|
||||
this.client_id_strategy = client_id_strategy;
|
||||
}
|
||||
|
||||
public Boolean getAllow_cascading_deletes() {
|
||||
public boolean getAdvanced_lucene_indexing() {
|
||||
return this.advanced_lucene_indexing;
|
||||
}
|
||||
|
||||
public void setAdvanced_lucene_indexing(boolean theAdvanced_lucene_indexing) {
|
||||
advanced_lucene_indexing = theAdvanced_lucene_indexing;
|
||||
}
|
||||
|
||||
public Boolean getAllow_cascading_deletes() {
|
||||
return allow_cascading_deletes;
|
||||
}
|
||||
|
||||
|
||||
@@ -120,6 +120,7 @@ public class FhirServerConfigCommon {
|
||||
}
|
||||
|
||||
retVal.setFilterParameterEnabled(appProperties.getFilter_search_enabled());
|
||||
retVal.setAdvancedLuceneIndexing(appProperties.getAdvanced_lucene_indexing());
|
||||
|
||||
return retVal;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user