Skip to content

Commit

Permalink
Resolve incompatible build with ipf 4.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Thopap committed Mar 18, 2024
1 parent 07e01a1 commit b8d581d
Showing 1 changed file with 35 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.FindPrescriptionsForDispenseQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.FindPrescriptionsForValidationQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.FindPrescriptionsQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.SubscriptionForDocumentEntryQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.SubscriptionForFolderQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.SubscriptionForPatientIndependentDocumentEntryQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.SubscriptionForPatientIndependentSubmissionSetQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.SubscriptionForSubmissionSetQuery;
import org.openehealth.ipf.commons.ihe.xds.core.requests.query.Query.Visitor;

/**
Expand Down Expand Up @@ -76,4 +81,34 @@ public void visit(FindMedicationListQuery query) {
public void visit(FindDocumentsByTitleQuery query) {
throw new UnsupportedOperationException("Gematik ePA query not yet supported");
}


@Override
public void visit(SubscriptionForDocumentEntryQuery arg0) {
throw new UnsupportedOperationException("DSUB query not yet supported");
}


@Override
public void visit(SubscriptionForFolderQuery arg0) {
throw new UnsupportedOperationException("DSUB query not yet supported");
}


@Override
public void visit(SubscriptionForPatientIndependentDocumentEntryQuery arg0) {
throw new UnsupportedOperationException("DSUB query not yet supported");
}


@Override
public void visit(SubscriptionForSubmissionSetQuery arg0) {
throw new UnsupportedOperationException("DSUB query not yet supported");
}


@Override
public void visit(SubscriptionForPatientIndependentSubmissionSetQuery arg0) {
throw new UnsupportedOperationException("DSUB query not yet supported");
}
}

0 comments on commit b8d581d

Please sign in to comment.