1

我正在尝试形成如下请求:

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:从业者=1234

Schedule.actor:Practitioner.location=5678

4

1 回答 1

1

这绝对是支持的。

假设您正在创建服务器,您可能需要在资源提供程序方法中添加一个参数,例如:

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

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

于 2016-08-10T09:31:19.307 回答