
001 002package ca.uhn.fhir.jpa.rp.r4; 003 004import java.util.*; 005 006import org.apache.commons.lang3.StringUtils; 007 008import ca.uhn.fhir.jpa.provider.r4.*; 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.r4.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 MedicationDispenseResourceProvider extends 021 JpaResourceProviderR4<MedicationDispense> 022 { 023 024 @Override 025 public Class<MedicationDispense> getResourceType() { 026 return MedicationDispense.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="Returns dispenses of this medicine code") 076 @OptionalParam(name="code") 077 TokenAndListParam theCode, 078 079 080 @Description(shortDefinition="Returns dispenses with a specific context (episode or episode of care)") 081 @OptionalParam(name="context", targetTypes={ } ) 082 ReferenceAndListParam theContext, 083 084 085 @Description(shortDefinition="Returns dispenses that should be sent to a specific destination") 086 @OptionalParam(name="destination", targetTypes={ } ) 087 ReferenceAndListParam theDestination, 088 089 090 @Description(shortDefinition="Returns dispenses with this external identifier") 091 @OptionalParam(name="identifier") 092 TokenAndListParam theIdentifier, 093 094 095 @Description(shortDefinition="Returns dispenses of this medicine resource") 096 @OptionalParam(name="medication", targetTypes={ } ) 097 ReferenceAndListParam theMedication, 098 099 100 @Description(shortDefinition="The identity of a patient to list dispenses for") 101 @OptionalParam(name="patient", targetTypes={ } ) 102 ReferenceAndListParam thePatient, 103 104 105 @Description(shortDefinition="Returns dispenses performed by a specific individual") 106 @OptionalParam(name="performer", targetTypes={ } ) 107 ReferenceAndListParam thePerformer, 108 109 110 @Description(shortDefinition="The identity of a prescription to list dispenses from") 111 @OptionalParam(name="prescription", targetTypes={ } ) 112 ReferenceAndListParam thePrescription, 113 114 115 @Description(shortDefinition="The identity of a receiver to list dispenses for") 116 @OptionalParam(name="receiver", targetTypes={ } ) 117 ReferenceAndListParam theReceiver, 118 119 120 @Description(shortDefinition="Returns dispenses with the specified responsible party") 121 @OptionalParam(name="responsibleparty", targetTypes={ } ) 122 ReferenceAndListParam theResponsibleparty, 123 124 125 @Description(shortDefinition="Returns dispenses with a specified dispense status") 126 @OptionalParam(name="status") 127 TokenAndListParam theStatus, 128 129 130 @Description(shortDefinition="The identity of a patient for whom to list dispenses") 131 @OptionalParam(name="subject", targetTypes={ } ) 132 ReferenceAndListParam theSubject, 133 134 135 @Description(shortDefinition="Returns dispenses of a specific type") 136 @OptionalParam(name="type") 137 TokenAndListParam theType, 138 139 140 @Description(shortDefinition="Returns dispenses handed over on this date") 141 @OptionalParam(name="whenhandedover") 142 DateRangeParam theWhenhandedover, 143 144 145 @Description(shortDefinition="Returns dispenses prepared on this date") 146 @OptionalParam(name="whenprepared") 147 DateRangeParam theWhenprepared, 148 149 @RawParam 150 Map<String, List<String>> theAdditionalRawParams, 151 152 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 153 @OptionalParam(name="_lastUpdated") 154 DateRangeParam theLastUpdated, 155 156 @IncludeParam 157 Set<Include> theIncludes, 158 159 @IncludeParam(reverse=true) 160 Set<Include> theRevIncludes, 161 162 @Sort 163 SortSpec theSort, 164 165 @ca.uhn.fhir.rest.annotation.Count 166 Integer theCount, 167 168 @ca.uhn.fhir.rest.annotation.Offset 169 Integer theOffset, 170 171 SummaryEnum theSummaryMode, 172 173 SearchTotalModeEnum theSearchTotalMode, 174 175 SearchContainedModeEnum theSearchContainedMode 176 177 ) { 178 startRequest(theServletRequest); 179 try { 180 SearchParameterMap paramMap = new SearchParameterMap(); 181 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_FILTER, theFtFilter); 182 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 183 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 184 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 185 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 186 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 187 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource); 188 paramMap.add("_has", theHas); 189 paramMap.add("_id", the_id); 190 paramMap.add("code", theCode); 191 paramMap.add("context", theContext); 192 paramMap.add("destination", theDestination); 193 paramMap.add("identifier", theIdentifier); 194 paramMap.add("medication", theMedication); 195 paramMap.add("patient", thePatient); 196 paramMap.add("performer", thePerformer); 197 paramMap.add("prescription", thePrescription); 198 paramMap.add("receiver", theReceiver); 199 paramMap.add("responsibleparty", theResponsibleparty); 200 paramMap.add("status", theStatus); 201 paramMap.add("subject", theSubject); 202 paramMap.add("type", theType); 203 paramMap.add("whenhandedover", theWhenhandedover); 204 paramMap.add("whenprepared", theWhenprepared); 205 paramMap.setRevIncludes(theRevIncludes); 206 paramMap.setLastUpdated(theLastUpdated); 207 paramMap.setIncludes(theIncludes); 208 paramMap.setSort(theSort); 209 paramMap.setCount(theCount); 210 paramMap.setOffset(theOffset); 211 paramMap.setSummaryMode(theSummaryMode); 212 paramMap.setSearchTotalMode(theSearchTotalMode); 213 paramMap.setSearchContainedMode(theSearchContainedMode); 214 215 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 216 217 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 218 return retVal; 219 } finally { 220 endRequest(theServletRequest); 221 } 222 } 223 224}