
001 002package ca.uhn.fhir.jpa.rp.r5; 003 004import java.util.*; 005 006import org.apache.commons.lang3.StringUtils; 007 008import ca.uhn.fhir.jpa.provider.r5.*; 009import ca.uhn.fhir.jpa.searchparam.SearchParameterMap; 010import ca.uhn.fhir.model.api.Include; 011import ca.uhn.fhir.model.api.annotation.*; 012import org.hl7.fhir.r5.model.*; 013import ca.uhn.fhir.rest.annotation.*; 014import ca.uhn.fhir.rest.param.*; 015import ca.uhn.fhir.rest.api.SortSpec; 016import ca.uhn.fhir.rest.api.SummaryEnum; 017import ca.uhn.fhir.rest.api.SearchTotalModeEnum; 018import ca.uhn.fhir.rest.api.SearchContainedModeEnum; 019 020public class PersonResourceProvider extends 021 JpaResourceProviderR5<Person> 022 { 023 024 @Override 025 public Class<Person> getResourceType() { 026 return Person.class; 027 } 028 029 @Search(allowUnknownParams=true) 030 public ca.uhn.fhir.rest.api.server.IBundleProvider search( 031 javax.servlet.http.HttpServletRequest theServletRequest, 032 javax.servlet.http.HttpServletResponse theServletResponse, 033 034 ca.uhn.fhir.rest.api.server.RequestDetails theRequestDetails, 035 036 @Description(shortDefinition="Search the contents of the resource's data using a filter") 037 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_FILTER) 038 StringAndListParam theFtFilter, 039 040 @Description(shortDefinition="Search the contents of the resource's data using a fulltext search") 041 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT) 042 StringAndListParam theFtContent, 043 044 @Description(shortDefinition="Search the contents of the resource's narrative using a fulltext search") 045 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TEXT) 046 StringAndListParam theFtText, 047 048 @Description(shortDefinition="Search for resources which have the given tag") 049 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TAG) 050 TokenAndListParam theSearchForTag, 051 052 @Description(shortDefinition="Search for resources which have the given security labels") 053 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY) 054 TokenAndListParam theSearchForSecurity, 055 056 @Description(shortDefinition="Search for resources which have the given profile") 057 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE) 058 UriAndListParam theSearchForProfile, 059 060 @Description(shortDefinition="Search for resources which have the given source value (Resource.meta.source)") 061 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE) 062 UriAndListParam theSearchForSource, 063 064 @Description(shortDefinition="Return resources linked to by the given target") 065 @OptionalParam(name="_has") 066 HasAndListParam theHas, 067 068 069 070 @Description(shortDefinition="The ID of the resource") 071 @OptionalParam(name="_id") 072 TokenAndListParam the_id, 073 074 075 @Description(shortDefinition="Search on the narrative of the resource") 076 @OptionalParam(name="_text") 077 SpecialAndListParam the_text, 078 079 080 @Description(shortDefinition="Multiple Resources: * [Patient](patient.html): A server defined search that may match any of the string fields in the Address, including line, city, district, state, country, postalCode, and/or text* [Person](person.html): A server defined search that may match any of the string fields in the Address, including line, city, district, state, country, postalCode, and/or text* [Practitioner](practitioner.html): A server defined search that may match any of the string fields in the Address, including line, city, district, state, country, postalCode, and/or text* [RelatedPerson](relatedperson.html): A server defined search that may match any of the string fields in the Address, including line, city, district, state, country, postalCode, and/or text") 081 @OptionalParam(name="address") 082 StringAndListParam theAddress, 083 084 085 @Description(shortDefinition="Multiple Resources: * [Patient](patient.html): A city specified in an address* [Person](person.html): A city specified in an address* [Practitioner](practitioner.html): A city specified in an address* [RelatedPerson](relatedperson.html): A city specified in an address") 086 @OptionalParam(name="address-city") 087 StringAndListParam theAddress_city, 088 089 090 @Description(shortDefinition="Multiple Resources: * [Patient](patient.html): A country specified in an address* [Person](person.html): A country specified in an address* [Practitioner](practitioner.html): A country specified in an address* [RelatedPerson](relatedperson.html): A country specified in an address") 091 @OptionalParam(name="address-country") 092 StringAndListParam theAddress_country, 093 094 095 @Description(shortDefinition="Multiple Resources: * [Patient](patient.html): A postalCode specified in an address* [Person](person.html): A postal code specified in an address* [Practitioner](practitioner.html): A postalCode specified in an address* [RelatedPerson](relatedperson.html): A postal code specified in an address") 096 @OptionalParam(name="address-postalcode") 097 StringAndListParam theAddress_postalcode, 098 099 100 @Description(shortDefinition="Multiple Resources: * [Patient](patient.html): A state specified in an address* [Person](person.html): A state specified in an address* [Practitioner](practitioner.html): A state specified in an address* [RelatedPerson](relatedperson.html): A state specified in an address") 101 @OptionalParam(name="address-state") 102 StringAndListParam theAddress_state, 103 104 105 @Description(shortDefinition="Multiple Resources: * [Patient](patient.html): A use code specified in an address* [Person](person.html): A use code specified in an address* [Practitioner](practitioner.html): A use code specified in an address* [RelatedPerson](relatedperson.html): A use code specified in an address") 106 @OptionalParam(name="address-use") 107 TokenAndListParam theAddress_use, 108 109 110 @Description(shortDefinition="Multiple Resources: * [Patient](patient.html): The patient's date of birth* [Person](person.html): The person's date of birth* [RelatedPerson](relatedperson.html): The Related Person's date of birth") 111 @OptionalParam(name="birthdate") 112 DateRangeParam theBirthdate, 113 114 115 @Description(shortDefinition="The date of death has been provided and satisfies this search value") 116 @OptionalParam(name="death-date") 117 DateRangeParam theDeath_date, 118 119 120 @Description(shortDefinition="This person has been marked as deceased, or has a death date entered") 121 @OptionalParam(name="deceased") 122 TokenAndListParam theDeceased, 123 124 125 @Description(shortDefinition="Multiple Resources: * [Patient](patient.html): A value in an email contact* [Person](person.html): A value in an email contact* [Practitioner](practitioner.html): A value in an email contact* [PractitionerRole](practitionerrole.html): A value in an email contact* [RelatedPerson](relatedperson.html): A value in an email contact") 126 @OptionalParam(name="email") 127 TokenAndListParam theEmail, 128 129 130 @Description(shortDefinition="A portion of the family name of the person") 131 @OptionalParam(name="family") 132 StringAndListParam theFamily, 133 134 135 @Description(shortDefinition="Multiple Resources: * [Patient](patient.html): Gender of the patient* [Person](person.html): The gender of the person* [Practitioner](practitioner.html): Gender of the practitioner* [RelatedPerson](relatedperson.html): Gender of the related person") 136 @OptionalParam(name="gender") 137 TokenAndListParam theGender, 138 139 140 @Description(shortDefinition="A portion of the given name of the person") 141 @OptionalParam(name="given") 142 StringAndListParam theGiven, 143 144 145 @Description(shortDefinition="A person Identifier") 146 @OptionalParam(name="identifier") 147 TokenAndListParam theIdentifier, 148 149 150 @Description(shortDefinition="Any link has this Patient, Person, RelatedPerson or Practitioner reference") 151 @OptionalParam(name="link", targetTypes={ } ) 152 ReferenceAndListParam theLink, 153 154 155 @Description(shortDefinition="A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text") 156 @OptionalParam(name="name") 157 StringAndListParam theName, 158 159 160 @Description(shortDefinition="The organization at which this person record is being managed") 161 @OptionalParam(name="organization", targetTypes={ } ) 162 ReferenceAndListParam theOrganization, 163 164 165 @Description(shortDefinition="The Person links to this Patient") 166 @OptionalParam(name="patient", targetTypes={ } ) 167 ReferenceAndListParam thePatient, 168 169 170 @Description(shortDefinition="Multiple Resources: * [Patient](patient.html): A value in a phone contact* [Person](person.html): A value in a phone contact* [Practitioner](practitioner.html): A value in a phone contact* [PractitionerRole](practitionerrole.html): A value in a phone contact* [RelatedPerson](relatedperson.html): A value in a phone contact") 171 @OptionalParam(name="phone") 172 TokenAndListParam thePhone, 173 174 175 @Description(shortDefinition="Multiple Resources: * [Patient](patient.html): A portion of either family or given name using some kind of phonetic matching algorithm* [Person](person.html): A portion of name using some kind of phonetic matching algorithm* [Practitioner](practitioner.html): A portion of either family or given name using some kind of phonetic matching algorithm* [RelatedPerson](relatedperson.html): A portion of name using some kind of phonetic matching algorithm") 176 @OptionalParam(name="phonetic") 177 StringAndListParam thePhonetic, 178 179 180 @Description(shortDefinition="The Person links to this Practitioner") 181 @OptionalParam(name="practitioner", targetTypes={ } ) 182 ReferenceAndListParam thePractitioner, 183 184 185 @Description(shortDefinition="The Person links to this RelatedPerson") 186 @OptionalParam(name="relatedperson", targetTypes={ } ) 187 ReferenceAndListParam theRelatedperson, 188 189 190 @Description(shortDefinition="Multiple Resources: * [Patient](patient.html): The value in any kind of telecom details of the patient* [Person](person.html): The value in any kind of contact* [Practitioner](practitioner.html): The value in any kind of contact* [PractitionerRole](practitionerrole.html): The value in any kind of contact* [RelatedPerson](relatedperson.html): The value in any kind of contact") 191 @OptionalParam(name="telecom") 192 TokenAndListParam theTelecom, 193 194 @RawParam 195 Map<String, List<String>> theAdditionalRawParams, 196 197 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 198 @OptionalParam(name="_lastUpdated") 199 DateRangeParam theLastUpdated, 200 201 @IncludeParam 202 Set<Include> theIncludes, 203 204 @IncludeParam(reverse=true) 205 Set<Include> theRevIncludes, 206 207 @Sort 208 SortSpec theSort, 209 210 @ca.uhn.fhir.rest.annotation.Count 211 Integer theCount, 212 213 @ca.uhn.fhir.rest.annotation.Offset 214 Integer theOffset, 215 216 SummaryEnum theSummaryMode, 217 218 SearchTotalModeEnum theSearchTotalMode, 219 220 SearchContainedModeEnum theSearchContainedMode 221 222 ) { 223 startRequest(theServletRequest); 224 try { 225 SearchParameterMap paramMap = new SearchParameterMap(); 226 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_FILTER, theFtFilter); 227 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 228 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 229 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 230 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 231 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 232 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource); 233 paramMap.add("_has", theHas); 234 paramMap.add("_id", the_id); 235 paramMap.add("_text", the_text); 236 paramMap.add("address", theAddress); 237 paramMap.add("address-city", theAddress_city); 238 paramMap.add("address-country", theAddress_country); 239 paramMap.add("address-postalcode", theAddress_postalcode); 240 paramMap.add("address-state", theAddress_state); 241 paramMap.add("address-use", theAddress_use); 242 paramMap.add("birthdate", theBirthdate); 243 paramMap.add("death-date", theDeath_date); 244 paramMap.add("deceased", theDeceased); 245 paramMap.add("email", theEmail); 246 paramMap.add("family", theFamily); 247 paramMap.add("gender", theGender); 248 paramMap.add("given", theGiven); 249 paramMap.add("identifier", theIdentifier); 250 paramMap.add("link", theLink); 251 paramMap.add("name", theName); 252 paramMap.add("organization", theOrganization); 253 paramMap.add("patient", thePatient); 254 paramMap.add("phone", thePhone); 255 paramMap.add("phonetic", thePhonetic); 256 paramMap.add("practitioner", thePractitioner); 257 paramMap.add("relatedperson", theRelatedperson); 258 paramMap.add("telecom", theTelecom); 259 paramMap.setRevIncludes(theRevIncludes); 260 paramMap.setLastUpdated(theLastUpdated); 261 paramMap.setIncludes(theIncludes); 262 paramMap.setSort(theSort); 263 paramMap.setCount(theCount); 264 paramMap.setOffset(theOffset); 265 paramMap.setSummaryMode(theSummaryMode); 266 paramMap.setSearchTotalMode(theSearchTotalMode); 267 paramMap.setSearchContainedMode(theSearchContainedMode); 268 269 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 270 271 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 272 return retVal; 273 } finally { 274 endRequest(theServletRequest); 275 } 276 } 277 278}