001 002package ca.uhn.fhir.jpa.rp.dstu3; 003 004import java.util.*; 005 006import org.apache.commons.lang3.StringUtils; 007 008import ca.uhn.fhir.jpa.provider.dstu3.*; 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.dstu3.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 DeviceRequestResourceProvider extends 021 JpaResourceProviderDstu3<DeviceRequest> 022 { 023 024 @Override 025 public Class<DeviceRequest> getResourceType() { 026 return DeviceRequest.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="When the request transitioned to being actionable") 076 @OptionalParam(name="authored-on") 077 DateRangeParam theAuthored_on, 078 079 080 @Description(shortDefinition="Plan/proposal/order fulfilled by this request") 081 @OptionalParam(name="based-on", targetTypes={ } ) 082 ReferenceAndListParam theBased_on, 083 084 085 @Description(shortDefinition="Code for what is being requested/ordered") 086 @OptionalParam(name="code") 087 TokenAndListParam theCode, 088 089 090 @Description(shortDefinition="Protocol or definition followed by this request") 091 @OptionalParam(name="definition", targetTypes={ } ) 092 ReferenceAndListParam theDefinition, 093 094 095 @Description(shortDefinition="Reference to resource that is being requested/ordered") 096 @OptionalParam(name="device", targetTypes={ } ) 097 ReferenceAndListParam theDevice, 098 099 100 @Description(shortDefinition="Encounter or Episode during which request was created") 101 @OptionalParam(name="encounter", targetTypes={ } ) 102 ReferenceAndListParam theEncounter, 103 104 105 @Description(shortDefinition="When service should occur") 106 @OptionalParam(name="event-date") 107 DateRangeParam theEvent_date, 108 109 110 @Description(shortDefinition="Composite request this is part of") 111 @OptionalParam(name="group-identifier") 112 TokenAndListParam theGroup_identifier, 113 114 115 @Description(shortDefinition="Business identifier for request/order") 116 @OptionalParam(name="identifier") 117 TokenAndListParam theIdentifier, 118 119 120 @Description(shortDefinition="proposal | plan | original-order |reflex-order") 121 @OptionalParam(name="intent") 122 TokenAndListParam theIntent, 123 124 125 @Description(shortDefinition="Individual the service is ordered for") 126 @OptionalParam(name="patient", targetTypes={ } ) 127 ReferenceAndListParam thePatient, 128 129 130 @Description(shortDefinition="Desired performer for service") 131 @OptionalParam(name="performer", targetTypes={ } ) 132 ReferenceAndListParam thePerformer, 133 134 135 @Description(shortDefinition="Request takes the place of referenced completed or terminated requests") 136 @OptionalParam(name="priorrequest", targetTypes={ } ) 137 ReferenceAndListParam thePriorrequest, 138 139 140 @Description(shortDefinition="Who/what is requesting service ") 141 @OptionalParam(name="requester", targetTypes={ } ) 142 ReferenceAndListParam theRequester, 143 144 145 @Description(shortDefinition="entered-in-error | draft | active |suspended | completed ") 146 @OptionalParam(name="status") 147 TokenAndListParam theStatus, 148 149 150 @Description(shortDefinition="Individual the service is ordered for") 151 @OptionalParam(name="subject", targetTypes={ } ) 152 ReferenceAndListParam theSubject, 153 154 @RawParam 155 Map<String, List<String>> theAdditionalRawParams, 156 157 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 158 @OptionalParam(name="_lastUpdated") 159 DateRangeParam theLastUpdated, 160 161 @IncludeParam 162 Set<Include> theIncludes, 163 164 @IncludeParam(reverse=true) 165 Set<Include> theRevIncludes, 166 167 @Sort 168 SortSpec theSort, 169 170 @ca.uhn.fhir.rest.annotation.Count 171 Integer theCount, 172 173 @ca.uhn.fhir.rest.annotation.Offset 174 Integer theOffset, 175 176 SummaryEnum theSummaryMode, 177 178 SearchTotalModeEnum theSearchTotalMode, 179 180 SearchContainedModeEnum theSearchContainedMode 181 182 ) { 183 startRequest(theServletRequest); 184 try { 185 SearchParameterMap paramMap = new SearchParameterMap(); 186 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_FILTER, theFtFilter); 187 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 188 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 189 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 190 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 191 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 192 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource); 193 paramMap.add("_has", theHas); 194 paramMap.add("_id", the_id); 195 paramMap.add("authored-on", theAuthored_on); 196 paramMap.add("based-on", theBased_on); 197 paramMap.add("code", theCode); 198 paramMap.add("definition", theDefinition); 199 paramMap.add("device", theDevice); 200 paramMap.add("encounter", theEncounter); 201 paramMap.add("event-date", theEvent_date); 202 paramMap.add("group-identifier", theGroup_identifier); 203 paramMap.add("identifier", theIdentifier); 204 paramMap.add("intent", theIntent); 205 paramMap.add("patient", thePatient); 206 paramMap.add("performer", thePerformer); 207 paramMap.add("priorrequest", thePriorrequest); 208 paramMap.add("requester", theRequester); 209 paramMap.add("status", theStatus); 210 paramMap.add("subject", theSubject); 211 paramMap.setRevIncludes(theRevIncludes); 212 paramMap.setLastUpdated(theLastUpdated); 213 paramMap.setIncludes(theIncludes); 214 paramMap.setSort(theSort); 215 paramMap.setCount(theCount); 216 paramMap.setOffset(theOffset); 217 paramMap.setSummaryMode(theSummaryMode); 218 paramMap.setSearchTotalMode(theSearchTotalMode); 219 paramMap.setSearchContainedMode(theSearchContainedMode); 220 221 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 222 223 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 224 return retVal; 225 } finally { 226 endRequest(theServletRequest); 227 } 228 } 229 230}