HAPI FHIR Java API是否支持链式参数?

时间:2016-08-08 19:48:22

标签: hl7-fhir hapi dstu2-fhir hapi-fhir

我正在尝试形成一个请求:

http://host/api/FHIR/DSTU2/Schedule?Schedule.actor:Practitioner=1234&Schedule.actor:Practitioner.location=5678&slottype=urn:oid:1.2.3|PrimaryCare&start=2016-08-08

使用HAPI FHIR Java API,如何解析以下参数:

Schedule.actor:Practitioner=1234

Schedule.actor:Practitioner.location=5678

1 个答案:

答案 0 :(得分:1)

这绝对是支持的。

假设您正在创建服务器,您需要资源提供程序方法的参数,如:

@IncludeParam(allow={"Schedule:actor","Schedule:practitioner"}) 
Set<Include> theIncludes

"*"添加到字符串列表中以将任何内容列入白名单