batch value set validation

This commit is contained in:
Grahame Grieve 2020-07-30 12:02:04 +10:00
parent 2c1460a663
commit 883f4ee4cb
1 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@ package org.hl7.fhir.r5.terminologies;
import java.util.Map;
import org.hl7.fhir.exceptions.FHIRException;
import org.hl7.fhir.r5.model.Bundle;
import org.hl7.fhir.r5.model.CapabilityStatement;
import org.hl7.fhir.r5.model.Parameters;
import org.hl7.fhir.r5.model.TerminologyCapabilities;
@ -52,4 +53,5 @@ public interface TerminologyClient {
public TerminologyClient setRetryCount(int retryCount) throws FHIRException;
public CapabilityStatement getCapabilitiesStatementQuick() throws FHIRException;
public Parameters lookupCode(Map<String, String> params) throws FHIRException;
public Bundle validateBatch(Bundle batch);
}