use of ca.uhn.fhir.rest.param.UriOrListParam in project cqf-ruler by DBCG.
the class Searches method byUrls.
// TODO: versioned version
public static SearchParameterMap byUrls(List<String> theUrls) {
checkNotNull(theUrls);
UriOrListParam params = new UriOrListParam();
theUrls.forEach(theUrl -> {
checkNotNull(theUrl);
params.addOr(new UriParam(theUrl));
});
return sync().add(ID_SP, params);
}
Aggregations