Skip to content

Commit

Permalink
Update to latest IPF Milestone 5.0-M3
Browse files Browse the repository at this point in the history
* adjust ipf xua setup according to
https://oehf.github.io/ipf-docs/docs/migration-5.0/
  • Loading branch information
Thopap committed Sep 27, 2024
1 parent 32a5282 commit 8c1c490
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 1 addition & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<properties>
<java.version>21</java.version>
<spring.boot.version>3.3.4</spring.boot.version>
<ipf.version>5.0-m1</ipf.version>
<ipf.version>5.0-m3</ipf.version>
<mockserver.version>5.15.0</mockserver.version>
</properties>
<dependencyManagement>
Expand Down Expand Up @@ -108,10 +108,6 @@
<groupId>org.openehealth.ipf.boot</groupId>
<artifactId>ipf-hl7-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.openehealth.ipf.commons</groupId>
<artifactId>ipf-commons-ihe-xua</artifactId>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import org.openehealth.ipf.commons.ihe.xds.core.requests.query.FetchQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.FindDispensesQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.FindDocumentsByReferenceIdForMultiplePatientsQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.FindDocumentsByTitleQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.FindDocumentsForMultiplePatientsQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.FindFoldersForMultiplePatientsQuery;
Expand Down Expand Up @@ -111,4 +112,10 @@ public void visit(SubscriptionForSubmissionSetQuery arg0) {
public void visit(SubscriptionForPatientIndependentSubmissionSetQuery arg0) {
throw new UnsupportedOperationException("DSUB query not yet supported");
}


@Override
public void visit(FindDocumentsByReferenceIdForMultiplePatientsQuery query) {
throw new UnsupportedOperationException("DSUB query not yet supported");
}
}
1 change: 1 addition & 0 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ xds.xua.enabled=false
fhir.server.profile.bootstrap=false

ipf.atna.auditEnabled=true
ipf.atna.ws-audit-dataset-enricher-class=org.openehealth.ipf.commons.ihe.ws.cxf.audit.XuaWsAuditDatasetEnricher

# Capture recent N atna messages and expose on /actuator/atna
# Disable mock to configure IPF's UDP or TLS ATNA sender
Expand Down

0 comments on commit 8c1c490

Please sign in to comment.