use of org.hl7.fhir.r5.model.CapabilityStatement.SystemInteractionComponent in project pathling by aehrc.
the class ConformanceProvider method buildSystemLevelInteractions.
@Nonnull
private List<SystemInteractionComponent> buildSystemLevelInteractions() {
final List<SystemInteractionComponent> interactions = new ArrayList<>();
final SystemInteractionComponent interaction = new SystemInteractionComponent();
interaction.setCode(SystemRestfulInteraction.BATCH);
interactions.add(interaction);
return interactions;
}
use of org.hl7.fhir.r5.model.CapabilityStatement.SystemInteractionComponent in project kindling by HL7.
the class Publisher method genConfInteraction.
private void genConfInteraction(CapabilityStatement conf, CapabilityStatementRestComponent res, SystemRestfulInteraction op, String doco) {
SystemInteractionComponent t = new SystemInteractionComponent();
t.setCode(op);
t.setDocumentation(doco);
res.getInteraction().add(t);
}
Aggregations