Does HAPI FHIR Java API support chained parameters? -


i trying form request :

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

using hapi fhir java api, how can parse following params :

schedule.actor:practitioner=1234

schedule.actor:practitioner.location=5678

this supported.

assuming you're creating server, want parameter on resource provider method like:

@includeparam(allow={"schedule:actor","schedule:practitioner"})  set<include> theincludes 

add "*" list of strings whitelist anything


Comments