Case sensitivity

This commit is contained in:
Tadgh 2024-03-05 10:30:14 -08:00
parent 3751ba44f9
commit 95beaec894
1 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ public class ${className}ResourceProvider extends
@OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE)
UriAndListParam theSearchForProfile,
#if ( $version == 'R5' )
#if ( $version == 'r5' )
@Description(shortDefinition="The language of the resource")
@OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_LANGUAGE)
TokenAndListParam theResourceLanguage,
@ -155,7 +155,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);
#if ( $version == 'R5' )
#if ( $version == 'r5' )
paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_LANGUAGE, theResourceLanguage);
#end
paramMap.add("_has", theHas);