Skip to content

Commit

Permalink
Add value
Browse files Browse the repository at this point in the history
  • Loading branch information
jkiddo committed Feb 4, 2024
1 parent bcc0a48 commit 37b8c93
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class ${className}ResourceProvider extends
UriAndListParam theSearchForProfile,

@Description(shortDefinition="Search the contents of the resource's data using a list")
@OptionalParam(name= Constants.PARAM_LIST)
@OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_LIST)
StringAndListParam theList,

@Description(shortDefinition="Search for resources which have the given source value (Resource.meta.source)")
Expand Down Expand Up @@ -153,6 +153,7 @@ public class ${className}ResourceProvider extends
paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity);
paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile);
paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource);
paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_LIST, theList);
paramMap.add("_has", theHas);
#foreach ( $param in $searchParams )
paramMap.add("${param.name}", the${param.nameCapitalized});
Expand Down

0 comments on commit 37b8c93

Please sign in to comment.