This commit is contained in:
dotasek
2023-08-17 13:02:02 -04:00
parent 69ff8c4d06
commit b88ffdada0
3 changed files with 4 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ import ca.uhn.fhir.context.ConfigurationException;
import ca.uhn.fhir.context.FhirContext;
import ca.uhn.fhir.context.FhirVersionEnum;
import ca.uhn.fhir.context.support.IValidationSupport;
import ca.uhn.fhir.cr.config.CrProviderLoader;
import ca.uhn.fhir.interceptor.api.IInterceptorBroadcaster;
import ca.uhn.fhir.jpa.api.IDaoRegistry;
import ca.uhn.fhir.jpa.api.config.JpaStorageSettings;
@@ -111,8 +111,7 @@ public class StarterJpaConfig {
@Autowired
private ConfigurableEnvironment configurableEnvironment;
@Autowired(required=false)
private CrProviderLoader crProviderLoader;
/**
* Customize the default/max page sizes for search results. You can set these however

View File

@@ -1,6 +1,6 @@
package ca.uhn.fhir.jpa.starter.cr;
import ca.uhn.fhir.cr.config.CrDstu3Config;
import ca.uhn.fhir.cr.config.dstu3.CrDstu3Config;
import ca.uhn.fhir.jpa.starter.annotations.OnDSTU3Condition;
import org.springframework.context.annotation.Conditional;
import org.springframework.context.annotation.Configuration;

View File

@@ -1,6 +1,6 @@
package ca.uhn.fhir.jpa.starter.cr;
import ca.uhn.fhir.cr.config.CrR4Config;
import ca.uhn.fhir.cr.config.r4.CrR4Config;
import ca.uhn.fhir.jpa.starter.annotations.OnR4Condition;
import org.springframework.context.annotation.Conditional;
import org.springframework.context.annotation.Import;