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.searchparam.SearchParameterMap; 009import ca.uhn.fhir.model.api.Include; 010import ca.uhn.fhir.model.api.annotation.*; 011import org.hl7.fhir.r5.model.*; 012import ca.uhn.fhir.rest.annotation.*; 013import ca.uhn.fhir.rest.param.*; 014import ca.uhn.fhir.rest.api.SortSpec; 015import ca.uhn.fhir.rest.api.SummaryEnum; 016import ca.uhn.fhir.rest.api.SearchTotalModeEnum; 017import ca.uhn.fhir.rest.api.SearchContainedModeEnum; 018 019public class DeviceResourceProvider extends 020 ca.uhn.fhir.jpa.provider.BaseJpaResourceProvider<Device> 021 { 022 023 @Override 024 public Class<Device> getResourceType() { 025 return Device.class; 026 } 027 028 @Search(allowUnknownParams=true) 029 public ca.uhn.fhir.rest.api.server.IBundleProvider search( 030 javax.servlet.http.HttpServletRequest theServletRequest, 031 javax.servlet.http.HttpServletResponse theServletResponse, 032 033 ca.uhn.fhir.rest.api.server.RequestDetails theRequestDetails, 034 035 @Description(shortDefinition="Search the contents of the resource's data using a filter") 036 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_FILTER) 037 StringAndListParam theFtFilter, 038 039 @Description(shortDefinition="Search the contents of the resource's data using a fulltext search") 040 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT) 041 StringAndListParam theFtContent, 042 043 @Description(shortDefinition="Search the contents of the resource's narrative using a fulltext search") 044 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TEXT) 045 StringAndListParam theFtText, 046 047 @Description(shortDefinition="Search for resources which have the given tag") 048 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TAG) 049 TokenAndListParam theSearchForTag, 050 051 @Description(shortDefinition="Search for resources which have the given security labels") 052 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY) 053 TokenAndListParam theSearchForSecurity, 054 055 @Description(shortDefinition="Search for resources which have the given profile") 056 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE) 057 UriAndListParam theSearchForProfile, 058 059 @Description(shortDefinition="Search for resources which have the given source value (Resource.meta.source)") 060 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE) 061 UriAndListParam theSearchForSource, 062 063 @Description(shortDefinition="Return resources linked to by the given target") 064 @OptionalParam(name="_has") 065 HasAndListParam theHas, 066 067 068 069 @Description(shortDefinition="The ID of the resource") 070 @OptionalParam(name="_id") 071 TokenAndListParam the_id, 072 073 074 @Description(shortDefinition="Search on the narrative of the resource") 075 @OptionalParam(name="_text") 076 SpecialAndListParam the_text, 077 078 079 @Description(shortDefinition="The biological source for the device") 080 @OptionalParam(name="biological-source-event") 081 TokenAndListParam theBiological_source_event, 082 083 084 @Description(shortDefinition="The definition / type of the device (code)") 085 @OptionalParam(name="code") 086 TokenAndListParam theCode, 087 088 089 @Description(shortDefinition="Code and value parameter pair") 090 @OptionalParam(name="code-value-concept", compositeTypes= { TokenParam.class, StringParam.class }) 091 CompositeAndListParam<TokenParam, StringParam> theCode_value_concept, 092 093 094 @Description(shortDefinition="The definition / type of the device") 095 @OptionalParam(name="definition", targetTypes={ } ) 096 ReferenceAndListParam theDefinition, 097 098 099 @Description(shortDefinition="A server defined search that may match any of the string fields in Device.name or Device.type.") 100 @OptionalParam(name="device-name") 101 StringAndListParam theDevice_name, 102 103 104 @Description(shortDefinition="The expiration date of the device") 105 @OptionalParam(name="expiration-date") 106 DateRangeParam theExpiration_date, 107 108 109 @Description(shortDefinition="Instance id from manufacturer, owner, and others") 110 @OptionalParam(name="identifier") 111 TokenAndListParam theIdentifier, 112 113 114 @Description(shortDefinition="A location, where the resource is found") 115 @OptionalParam(name="location", targetTypes={ } ) 116 ReferenceAndListParam theLocation, 117 118 119 @Description(shortDefinition="The lot number of the device") 120 @OptionalParam(name="lot-number") 121 StringAndListParam theLot_number, 122 123 124 @Description(shortDefinition="The manufacture date of the device") 125 @OptionalParam(name="manufacture-date") 126 DateRangeParam theManufacture_date, 127 128 129 @Description(shortDefinition="The manufacturer of the device") 130 @OptionalParam(name="manufacturer") 131 StringAndListParam theManufacturer, 132 133 134 @Description(shortDefinition="The model of the device") 135 @OptionalParam(name="model") 136 StringAndListParam theModel, 137 138 139 @Description(shortDefinition="The organization responsible for the device") 140 @OptionalParam(name="organization", targetTypes={ } ) 141 ReferenceAndListParam theOrganization, 142 143 144 @Description(shortDefinition="The parent device") 145 @OptionalParam(name="parent", targetTypes={ } ) 146 ReferenceAndListParam theParent, 147 148 149 @Description(shortDefinition="The serial number of the device") 150 @OptionalParam(name="serial-number") 151 StringAndListParam theSerial_number, 152 153 154 @Description(shortDefinition="The standards, specifications, or formal guidances.") 155 @OptionalParam(name="specification") 156 TokenAndListParam theSpecification, 157 158 159 @Description(shortDefinition="A composite of both specification and version") 160 @OptionalParam(name="specification-version", compositeTypes= { TokenParam.class, StringParam.class }) 161 CompositeAndListParam<TokenParam, StringParam> theSpecification_version, 162 163 164 @Description(shortDefinition="active | inactive | entered-in-error | unknown") 165 @OptionalParam(name="status") 166 TokenAndListParam theStatus, 167 168 169 @Description(shortDefinition="The type of the device") 170 @OptionalParam(name="type") 171 TokenAndListParam theType, 172 173 174 @Description(shortDefinition="UDI Barcode (RFID or other technology) string in *HRF* format.") 175 @OptionalParam(name="udi-carrier") 176 StringAndListParam theUdi_carrier, 177 178 179 @Description(shortDefinition="The udi Device Identifier (DI)") 180 @OptionalParam(name="udi-di") 181 StringAndListParam theUdi_di, 182 183 184 @Description(shortDefinition="Network address to contact device") 185 @OptionalParam(name="url") 186 UriAndListParam theUrl, 187 188 189 @Description(shortDefinition="The specific version of the device") 190 @OptionalParam(name="version") 191 StringAndListParam theVersion, 192 193 @RawParam 194 Map<String, List<String>> theAdditionalRawParams, 195 196 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 197 @OptionalParam(name="_lastUpdated") 198 DateRangeParam theLastUpdated, 199 200 @IncludeParam 201 Set<Include> theIncludes, 202 203 @IncludeParam(reverse=true) 204 Set<Include> theRevIncludes, 205 206 @Sort 207 SortSpec theSort, 208 209 @ca.uhn.fhir.rest.annotation.Count 210 Integer theCount, 211 212 @ca.uhn.fhir.rest.annotation.Offset 213 Integer theOffset, 214 215 SummaryEnum theSummaryMode, 216 217 SearchTotalModeEnum theSearchTotalMode, 218 219 SearchContainedModeEnum theSearchContainedMode 220 221 ) { 222 startRequest(theServletRequest); 223 try { 224 SearchParameterMap paramMap = new SearchParameterMap(); 225 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_FILTER, theFtFilter); 226 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 227 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 228 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 229 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 230 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 231 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource); 232 paramMap.add("_has", theHas); 233 paramMap.add("_id", the_id); 234 paramMap.add("_text", the_text); 235 paramMap.add("biological-source-event", theBiological_source_event); 236 paramMap.add("code", theCode); 237 paramMap.add("code-value-concept", theCode_value_concept); 238 paramMap.add("definition", theDefinition); 239 paramMap.add("device-name", theDevice_name); 240 paramMap.add("expiration-date", theExpiration_date); 241 paramMap.add("identifier", theIdentifier); 242 paramMap.add("location", theLocation); 243 paramMap.add("lot-number", theLot_number); 244 paramMap.add("manufacture-date", theManufacture_date); 245 paramMap.add("manufacturer", theManufacturer); 246 paramMap.add("model", theModel); 247 paramMap.add("organization", theOrganization); 248 paramMap.add("parent", theParent); 249 paramMap.add("serial-number", theSerial_number); 250 paramMap.add("specification", theSpecification); 251 paramMap.add("specification-version", theSpecification_version); 252 paramMap.add("status", theStatus); 253 paramMap.add("type", theType); 254 paramMap.add("udi-carrier", theUdi_carrier); 255 paramMap.add("udi-di", theUdi_di); 256 paramMap.add("url", theUrl); 257 paramMap.add("version", theVersion); 258 paramMap.setRevIncludes(theRevIncludes); 259 paramMap.setLastUpdated(theLastUpdated); 260 paramMap.setIncludes(theIncludes); 261 paramMap.setSort(theSort); 262 paramMap.setCount(theCount); 263 paramMap.setOffset(theOffset); 264 paramMap.setSummaryMode(theSummaryMode); 265 paramMap.setSearchTotalMode(theSearchTotalMode); 266 paramMap.setSearchContainedMode(theSearchContainedMode); 267 268 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 269 270 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 271 return retVal; 272 } finally { 273 endRequest(theServletRequest); 274 } 275 } 276 277}