19.5.11. API:事务
支持制作者和消费者
事务 API 在语法中定义,如下所示:
fhir:transaction/methodName?[parameters]
下表中列出了 2 方法,后面列出了每种方法的详细语法。(API 方法可以有一个简写的别名名称,可在语法中使用,而不是名称。)
方法 | Alias | 描述 |
---|---|---|
使用给定的原始文本(应该是一个 Bundle 资源)作为事务输入 | ||
使用资源列表作为事务输入 |
19.5.11.1. 使用Bundle 的方法
签名:
- 带有Bundle(String stringBundle, java.util.Map<org.apache.camel.component.fhir.api.ExtraParameters, Object> extraParameters 的字符串;
- org.hl7.fhir.instance.model.api.IBaseBundle withBundle(org.hl7.fhir.instance.model.api.IBaseBundle bundle, java.util.Map<org.apache.camel.component.fhir.api.ExtraParameters, Object> extraParameters);
fhir/withBundle API 方法具有下表中列出的参数:
参数 | 描述 | 类型 |
---|---|---|
bundle | 在事务中使用的捆绑包 | IBaseBundle |
extraParameters | 有关可传递的参数的完整列表,请参阅 ExtraParameters,可以是 NULL | map |
stringBundle | 在事务中使用的捆绑包 | 字符串 |