|
1 | 1 | package ca.uhn.fhir.jpa.starter;
|
2 | 2 |
|
3 | 3 | import ca.uhn.fhir.context.FhirVersionEnum;
|
| 4 | +import ca.uhn.fhir.jpa.api.config.JpaStorageSettings; |
4 | 5 | import ca.uhn.fhir.jpa.api.config.JpaStorageSettings.ClientIdStrategyEnum;
|
5 | 6 | import ca.uhn.fhir.jpa.api.config.JpaStorageSettings.IdStrategyEnum;
|
6 | 7 | import ca.uhn.fhir.jpa.model.entity.NormalizedQuantitySearchLevel;
|
@@ -106,6 +107,8 @@ public class AppProperties {
|
106 | 107 | private Integer pre_expand_value_sets_default_count = 1000;
|
107 | 108 | private Integer pre_expand_value_sets_max_count = 1000;
|
108 | 109 | private Integer maximum_expansion_size = 1000;
|
| 110 | + private JpaStorageSettings.StoreMetaSourceInformationEnum store_meta_source_information = |
| 111 | + JpaStorageSettings.StoreMetaSourceInformationEnum.NONE; |
109 | 112 |
|
110 | 113 | private Map<String, RemoteSystem> remote_terminology_service = null;
|
111 | 114 |
|
@@ -742,6 +745,15 @@ public void setRemote_terminology_service(Map<String, RemoteSystem> remote_termi
|
742 | 745 | this.remote_terminology_service = remote_terminology_service;
|
743 | 746 | }
|
744 | 747 |
|
| 748 | + public JpaStorageSettings.StoreMetaSourceInformationEnum getStore_meta_source_information() { |
| 749 | + return store_meta_source_information; |
| 750 | + } |
| 751 | + |
| 752 | + public void setStore_meta_source_information( |
| 753 | + JpaStorageSettings.StoreMetaSourceInformationEnum store_meta_source_information) { |
| 754 | + this.store_meta_source_information = store_meta_source_information; |
| 755 | + } |
| 756 | + |
745 | 757 | public static class Cors {
|
746 | 758 | private Boolean allow_Credentials = true;
|
747 | 759 | private List<String> allowed_origin = List.of("*");
|
|
0 commit comments