use of org.hl7.fhir.dstu3.model.CapabilityStatement.TypeRestfulInteraction in project kindling by HL7.
the class Publisher method genConfInteraction.
private void genConfInteraction(CapabilityStatement conf, CapabilityStatementRestResourceComponent res, TypeRestfulInteraction op, String doco) {
ResourceInteractionComponent t = new ResourceInteractionComponent();
t.setCode(op);
t.setDocumentation(doco);
res.getInteraction().add(t);
}
Aggregations