From efe11069699dcfcd74f8973c00f0328969201934 Mon Sep 17 00:00:00 2001 From: Justin McKelvy <60718638+Capt-Mac@users.noreply.github.com> Date: Tue, 28 Nov 2023 10:16:56 -0700 Subject: [PATCH] reset appProperties --- .../java/ca/uhn/fhir/jpa/starter/AppProperties.java | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/main/java/ca/uhn/fhir/jpa/starter/AppProperties.java b/src/main/java/ca/uhn/fhir/jpa/starter/AppProperties.java index 2ab6181..b986b9a 100644 --- a/src/main/java/ca/uhn/fhir/jpa/starter/AppProperties.java +++ b/src/main/java/ca/uhn/fhir/jpa/starter/AppProperties.java @@ -22,6 +22,7 @@ import java.util.Set; @EnableConfigurationProperties public class AppProperties { + private Boolean cr_enabled = false; private Boolean ips_enabled = false; private Boolean openapi_enabled = false; private Boolean mdm_enabled = false; @@ -64,6 +65,9 @@ public class AppProperties { private List supported_resource_types = new ArrayList<>(); private List allowed_bundle_types = null; private Boolean narrative_enabled = true; + + private Boolean ig_runtime_upload_enabled = false; + private Validation validation = new Validation(); private Map tester = null; private Logger logger = new Logger(); @@ -71,21 +75,24 @@ public class AppProperties { private Cors cors = null; private Partitioning partitioning = null; private Boolean install_transitive_ig_dependencies = true; - private Boolean reload_existing_implementationguides = false; private Map implementationGuides = null; - private Boolean cr_enabled = false; - private Boolean ig_runtime_upload_enabled = false; + private String staticLocation = null; + private String staticLocationPrefix = "/static"; + private Boolean lastn_enabled = false; private boolean store_resource_in_lucene_index_enabled = false; private NormalizedQuantitySearchLevel normalized_quantity_search_level = NormalizedQuantitySearchLevel.NORMALIZED_QUANTITY_SEARCH_NOT_SUPPORTED; + private Boolean use_apache_address_strategy = false; private Boolean use_apache_address_strategy_https = false; + private Integer bundle_batch_pool_size = 20; private Integer bundle_batch_pool_max_size = 100; private final Set local_base_urls = new HashSet<>(); + private final List custom_interceptor_classes = new ArrayList<>(); public String getStaticLocationPrefix() {