Skip to content

Commit 89ff121

Browse files
authored
Merge pull request #837 from hapifhir/cr-3-22-0
Update CR to release 3.22.0
2 parents 7cd0637 + 4f9a84d commit 89ff121

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
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 & 5 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

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

18-
public UpdatedCdsCrService(
19-
RequestDetails theRequestDetails, Repository theRepository, ICdsConfigService theCdsConfigService) {
20-
super(theRequestDetails, theRepository, theCdsConfigService);
17+
public UpdatedCdsCrService(RequestDetails theRequestDetails, IRepository theRepository) {
18+
super(theRequestDetails, theRepository);
2119
adapterFactory = IAdapterFactory.forFhirContext(theRepository.fhirContext());
2220
}
2321

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)