Skip to content

Commit 0690d80

Browse files
committed
bump cr to 3-22-0
1 parent 7cd0637 commit 0690d80

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<properties>
77
<java.version>17</java.version>
88
<hapi.fhir.jpa.server.starter.revision>1</hapi.fhir.jpa.server.starter.revision>
9-
<clinical-reasoning.version>3.21.0</clinical-reasoning.version>
9+
<clinical-reasoning.version>3.22.0</clinical-reasoning.version>
1010
</properties>
1111

1212
<!-- one-liner to take you to the cloud with settings form the application.yaml file: -->

src/main/java/ca/uhn/fhir/jpa/starter/cdshooks/UpdatedCdsCrService.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
package ca.uhn.fhir.jpa.starter.cdshooks;
22

33
import ca.uhn.fhir.context.FhirVersionEnum;
4+
import ca.uhn.fhir.repository.IRepository;
45
import ca.uhn.fhir.rest.api.server.RequestDetails;
56
import ca.uhn.fhir.rest.api.server.cdshooks.CdsServiceRequestJson;
6-
import ca.uhn.hapi.fhir.cdshooks.api.ICdsConfigService;
77
import org.hl7.fhir.instance.model.api.IBaseParameters;
88
import org.hl7.fhir.instance.model.api.IPrimitiveType;
9-
import org.opencds.cqf.fhir.api.Repository;
109
import org.opencds.cqf.fhir.cr.hapi.cdshooks.CdsCrService;
1110
import org.opencds.cqf.fhir.utility.adapter.IAdapterFactory;
1211

@@ -16,8 +15,8 @@ public class UpdatedCdsCrService extends CdsCrService {
1615
private final IAdapterFactory adapterFactory;
1716

1817
public UpdatedCdsCrService(
19-
RequestDetails theRequestDetails, Repository theRepository, ICdsConfigService theCdsConfigService) {
20-
super(theRequestDetails, theRepository, theCdsConfigService);
18+
RequestDetails theRequestDetails, IRepository theRepository) {
19+
super(theRequestDetails, theRepository);
2120
adapterFactory = IAdapterFactory.forFhirContext(theRepository.fhirContext());
2221
}
2322

src/main/java/ca/uhn/fhir/jpa/starter/cdshooks/UpdatedCrDiscoveryService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package ca.uhn.fhir.jpa.starter.cdshooks;
22

3+
import ca.uhn.fhir.repository.IRepository;
34
import org.hl7.fhir.instance.model.api.IIdType;
4-
import org.opencds.cqf.fhir.api.Repository;
55
import org.opencds.cqf.fhir.cr.hapi.cdshooks.discovery.CrDiscoveryService;
66

77
public class UpdatedCrDiscoveryService extends CrDiscoveryService {
8-
public UpdatedCrDiscoveryService(IIdType thePlanDefinitionId, Repository theRepository) {
8+
public UpdatedCrDiscoveryService(IIdType thePlanDefinitionId, IRepository theRepository) {
99
super(thePlanDefinitionId, theRepository);
1010
maxUriLength = 6000;
1111
}

0 commit comments

Comments
 (0)