File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed
src/main/java/ca/uhn/fhir/jpa/starter/cdshooks Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 6
6
<properties >
7
7
<java .version>17</java .version>
8
8
<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>
10
10
</properties >
11
11
12
12
<!-- one-liner to take you to the cloud with settings form the application.yaml file: -->
Original file line number Diff line number Diff line change 1
1
package ca .uhn .fhir .jpa .starter .cdshooks ;
2
2
3
3
import ca .uhn .fhir .context .FhirVersionEnum ;
4
+ import ca .uhn .fhir .repository .IRepository ;
4
5
import ca .uhn .fhir .rest .api .server .RequestDetails ;
5
6
import ca .uhn .fhir .rest .api .server .cdshooks .CdsServiceRequestJson ;
6
- import ca .uhn .hapi .fhir .cdshooks .api .ICdsConfigService ;
7
7
import org .hl7 .fhir .instance .model .api .IBaseParameters ;
8
8
import org .hl7 .fhir .instance .model .api .IPrimitiveType ;
9
- import org .opencds .cqf .fhir .api .Repository ;
10
9
import org .opencds .cqf .fhir .cr .hapi .cdshooks .CdsCrService ;
11
10
import org .opencds .cqf .fhir .utility .adapter .IAdapterFactory ;
12
11
15
14
public class UpdatedCdsCrService extends CdsCrService {
16
15
private final IAdapterFactory adapterFactory ;
17
16
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 );
21
19
adapterFactory = IAdapterFactory .forFhirContext (theRepository .fhirContext ());
22
20
}
23
21
Original file line number Diff line number Diff line change 1
1
package ca .uhn .fhir .jpa .starter .cdshooks ;
2
2
3
+ import ca .uhn .fhir .repository .IRepository ;
3
4
import org .hl7 .fhir .instance .model .api .IIdType ;
4
- import org .opencds .cqf .fhir .api .Repository ;
5
5
import org .opencds .cqf .fhir .cr .hapi .cdshooks .discovery .CrDiscoveryService ;
6
6
7
7
public class UpdatedCrDiscoveryService extends CrDiscoveryService {
8
- public UpdatedCrDiscoveryService (IIdType thePlanDefinitionId , Repository theRepository ) {
8
+ public UpdatedCrDiscoveryService (IIdType thePlanDefinitionId , IRepository theRepository ) {
9
9
super (thePlanDefinitionId , theRepository );
10
10
maxUriLength = 6000 ;
11
11
}
You can’t perform that action at this time.
0 commit comments