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

Does HAPI FHIR Java API support chained parameters?

我正在尝试形成这样的请求:

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

绝对支持

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

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

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