1 2 package ca.uhn.fhir.jpa.rp.dstu3; 3 4 import java.util.*; 5 6 import org.apache.commons.lang3.StringUtils; 7 8 import ca.uhn.fhir.jpa.provider.dstu3.*; 9 import ca.uhn.fhir.jpa.searchparam.SearchParameterMap; 10 import ca.uhn.fhir.model.api.Include; 11 import ca.uhn.fhir.model.api.annotation.*; 12 import org.hl7.fhir.dstu3.model.*; 13 import ca.uhn.fhir.rest.annotation.*; 14 import ca.uhn.fhir.rest.param.*; 15 import ca.uhn.fhir.rest.api.SortSpec; 16 import ca.uhn.fhir.rest.api.SummaryEnum; 17 import ca.uhn.fhir.rest.api.SearchTotalModeEnum; 18 19 public class LocationResourceProvider extends 20 JpaResourceProviderDstu3<Location> 21 { 22 23 @Override 24 public Class<Location> getResourceType() { 25 return Location.class; 26 } 27 28 @Search(allowUnknownParams=true) 29 public ca.uhn.fhir.rest.api.server.IBundleProvider search( 30 javax.servlet.http.HttpServletRequest theServletRequest, 31 javax.servlet.http.HttpServletResponse theServletResponse, 32 33 ca.uhn.fhir.rest.api.server.RequestDetails theRequestDetails, 34 35 @Description(shortDefinition="Search the contents of the resource's data using a fulltext search") 36 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT) 37 StringAndListParam theFtContent, 38 39 @Description(shortDefinition="Search the contents of the resource's narrative using a fulltext search") 40 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TEXT) 41 StringAndListParam theFtText, 42 43 @Description(shortDefinition="Search for resources which have the given tag") 44 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TAG) 45 TokenAndListParam theSearchForTag, 46 47 @Description(shortDefinition="Search for resources which have the given security labels") 48 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY) 49 TokenAndListParam theSearchForSecurity, 50 51 @Description(shortDefinition="Search for resources which have the given profile") 52 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE) 53 UriAndListParam theSearchForProfile, 54 55 @Description(shortDefinition="Return resources linked to by the given target") 56 @OptionalParam(name="_has") 57 HasAndListParam theHas, 58 59 60 @Description(shortDefinition="The ID of the resource") 61 @OptionalParam(name="_id") 62 TokenAndListParam the_id, 63 64 @Description(shortDefinition="The language of the resource") 65 @OptionalParam(name="_language") 66 StringAndListParam the_language, 67 68 @Description(shortDefinition="A (part of the) address of the location") 69 @OptionalParam(name="address") 70 StringAndListParam theAddress, 71 72 @Description(shortDefinition="A city specified in an address") 73 @OptionalParam(name="address-city") 74 StringAndListParam theAddress_city, 75 76 @Description(shortDefinition="A country specified in an address") 77 @OptionalParam(name="address-country") 78 StringAndListParam theAddress_country, 79 80 @Description(shortDefinition="A postal code specified in an address") 81 @OptionalParam(name="address-postalcode") 82 StringAndListParam theAddress_postalcode, 83 84 @Description(shortDefinition="A state specified in an address") 85 @OptionalParam(name="address-state") 86 StringAndListParam theAddress_state, 87 88 @Description(shortDefinition="A use code specified in an address") 89 @OptionalParam(name="address-use") 90 TokenAndListParam theAddress_use, 91 92 @Description(shortDefinition="Technical endpoints providing access to services operated for the location") 93 @OptionalParam(name="endpoint", targetTypes={ } ) 94 ReferenceAndListParam theEndpoint, 95 96 @Description(shortDefinition="An identifier for the location") 97 @OptionalParam(name="identifier") 98 TokenAndListParam theIdentifier, 99 100 @Description(shortDefinition="A portion of the location's name or alias") 101 @OptionalParam(name="name") 102 StringAndListParam theName, 103 104 @Description(shortDefinition="The coordinates expressed as [latitude]:[longitude] (using the WGS84 datum, see notes) to find locations near to (servers may search using a square rather than a circle for efficiency)Requires the near-distance parameter to be provided also") 105 @OptionalParam(name="near") 106 TokenAndListParam theNear, 107 108 @Description(shortDefinition="A distance quantity to limit the near search to locations within a specific distanceRequires the near parameter to also be included") 109 @OptionalParam(name="near-distance") 110 QuantityAndListParam theNear_distance, 111 112 @Description(shortDefinition="Searches for locations (typically bed/room) that have an operational status (e.g. contaminated, housekeeping)") 113 @OptionalParam(name="operational-status") 114 TokenAndListParam theOperational_status, 115 116 @Description(shortDefinition="Searches for locations that are managed by the provided organization") 117 @OptionalParam(name="organization", targetTypes={ } ) 118 ReferenceAndListParam theOrganization, 119 120 @Description(shortDefinition="A location of which this location is a part") 121 @OptionalParam(name="partof", targetTypes={ } ) 122 ReferenceAndListParam thePartof, 123 124 @Description(shortDefinition="Searches for locations with a specific kind of status") 125 @OptionalParam(name="status") 126 TokenAndListParam theStatus, 127 128 @Description(shortDefinition="A code for the type of location") 129 @OptionalParam(name="type") 130 TokenAndListParam theType, 131 132 @RawParam 133 Map<String, List<String>> theAdditionalRawParams, 134 135 @IncludeParam(reverse=true) 136 Set<Include> theRevIncludes, 137 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 138 @OptionalParam(name="_lastUpdated") 139 DateRangeParam theLastUpdated, 140 141 @IncludeParam(allow= { 142 "Location:endpoint" , "Location:organization" , "Location:partof" , "Location:endpoint" , "Location:organization" , "Location:partof" , "Location:endpoint" , "Location:organization" , "Location:partof" , "*" 143 }) 144 Set<Include> theIncludes, 145 146 @Sort 147 SortSpec theSort, 148 149 @ca.uhn.fhir.rest.annotation.Count 150 Integer theCount, 151 152 SummaryEnum theSummaryMode, 153 154 SearchTotalModeEnum theSearchTotalMode 155 156 ) { 157 startRequest(theServletRequest); 158 try { 159 SearchParameterMap paramMap = new SearchParameterMap(); 160 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 161 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 162 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 163 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 164 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 165 paramMap.add("_has", theHas); 166 paramMap.add("_id", the_id); 167 paramMap.add("_language", the_language); 168 paramMap.add("address", theAddress); 169 paramMap.add("address-city", theAddress_city); 170 paramMap.add("address-country", theAddress_country); 171 paramMap.add("address-postalcode", theAddress_postalcode); 172 paramMap.add("address-state", theAddress_state); 173 paramMap.add("address-use", theAddress_use); 174 paramMap.add("endpoint", theEndpoint); 175 paramMap.add("identifier", theIdentifier); 176 paramMap.add("name", theName); 177 paramMap.add("near", theNear); 178 paramMap.add("near-distance", theNear_distance); 179 paramMap.add("operational-status", theOperational_status); 180 paramMap.add("organization", theOrganization); 181 paramMap.add("partof", thePartof); 182 paramMap.add("status", theStatus); 183 paramMap.add("type", theType); 184 paramMap.setRevIncludes(theRevIncludes); 185 paramMap.setLastUpdated(theLastUpdated); 186 paramMap.setIncludes(theIncludes); 187 paramMap.setSort(theSort); 188 paramMap.setCount(theCount); 189 paramMap.setSummaryMode(theSummaryMode); 190 paramMap.setSearchTotalMode(theSearchTotalMode); 191 192 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 193 194 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 195 return retVal; 196 } finally { 197 endRequest(theServletRequest); 198 } 199 } 200 201 }