Feat/restructuring (#422)
* Did restructuring and made repo validation interceptor an optional bean instead as it makes it more clean * Moved construction of FHIR servlet into a bean for better reuse of others that would like to depend directly on this library * Disabled default validation enabled
This commit is contained in:
committed by
GitHub
parent
c5e460dab0
commit
d660d5f76d
@@ -81,7 +81,7 @@ public class AppProperties {
|
||||
|
||||
private Integer bundle_batch_pool_size = 20;
|
||||
private Integer bundle_batch_pool_max_size = 100;
|
||||
private List<String> local_base_urls = new ArrayList<>();
|
||||
private final List<String> local_base_urls = new ArrayList<>();
|
||||
|
||||
public Boolean getOpenapi_enabled() {
|
||||
return openapi_enabled;
|
||||
@@ -203,10 +203,6 @@ public class AppProperties {
|
||||
this.supported_resource_types = supported_resource_types;
|
||||
}
|
||||
|
||||
public List<String> getSupported_resource_types(List<String> supported_resource_types) {
|
||||
return this.supported_resource_types;
|
||||
}
|
||||
|
||||
public Logger getLogger() {
|
||||
return logger;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user