Remove all traces of EMPI since it has been replaced in master with MDM.

This commit is contained in:
Kevin Dougan
2020-12-24 09:31:30 -05:00
parent f23553e2ea
commit 9becb3fc44
10 changed files with 4 additions and 87 deletions

View File

@@ -17,14 +17,12 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@ConfigurationProperties(prefix = "hapi.fhir")
@Configuration
@EnableConfigurationProperties
public class AppProperties {
private Boolean cql_enabled = false;
private Boolean empi_enabled = false;
private Boolean allow_cascading_deletes = false;
private Boolean allow_contains_searches = true;
private Boolean allow_external_references = false;
@@ -99,14 +97,6 @@ public class AppProperties {
this.cql_enabled = cql_enabled;
}
public Boolean getEmpi_enabled() {
return empi_enabled;
}
public void setEmpi_enabled(Boolean empi_enabled) {
this.empi_enabled = empi_enabled;
}
public Cors getCors() {
return cors;
}