Skip to content

Commit 79d5441

Browse files
committed
Bump version + update API
1 parent 7c76755 commit 79d5441

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>ca.uhn.hapi.fhir</groupId>
1616
<artifactId>hapi-fhir</artifactId>
17-
<version>7.0.2</version>
17+
<version>7.1.6-SNAPSHOT</version>
1818
</parent>
1919

2020
<artifactId>hapi-fhir-jpaserver-starter</artifactId>
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
package ca.uhn.fhir.jpa.starter.ips;
22

33
import ca.uhn.fhir.context.FhirContext;
4-
import ca.uhn.fhir.jpa.api.dao.DaoRegistry;
54
import ca.uhn.fhir.jpa.ips.api.IIpsGenerationStrategy;
65
import ca.uhn.fhir.jpa.ips.generator.IIpsGeneratorSvc;
76
import ca.uhn.fhir.jpa.ips.generator.IpsGeneratorSvcImpl;
7+
import ca.uhn.fhir.jpa.ips.jpa.DefaultJpaIpsGenerationStrategy;
88
import ca.uhn.fhir.jpa.ips.provider.IpsOperationProvider;
9-
import ca.uhn.fhir.jpa.ips.strategy.DefaultIpsGenerationStrategy;
9+
1010
import org.springframework.context.annotation.Bean;
1111
import org.springframework.context.annotation.Conditional;
1212

1313
@Conditional(IpsConfigCondition.class)
1414
public class StarterIpsConfig {
1515
@Bean
1616
IIpsGenerationStrategy ipsGenerationStrategy() {
17-
return new DefaultIpsGenerationStrategy();
17+
return new DefaultJpaIpsGenerationStrategy();
1818
}
1919

2020
@Bean
@@ -24,7 +24,7 @@ public IpsOperationProvider ipsOperationProvider(IIpsGeneratorSvc theIpsGenerato
2424

2525
@Bean
2626
public IIpsGeneratorSvc ipsGeneratorSvcImpl(
27-
FhirContext theFhirContext, IIpsGenerationStrategy theGenerationStrategy, DaoRegistry theDaoRegistry) {
28-
return new IpsGeneratorSvcImpl(theFhirContext, theGenerationStrategy, theDaoRegistry);
27+
FhirContext theFhirContext, IIpsGenerationStrategy theGenerationStrategy) {
28+
return new IpsGeneratorSvcImpl(theFhirContext, theGenerationStrategy);
2929
}
3030
}

0 commit comments

Comments
 (0)