001 002package ca.uhn.fhir.jpa.rp.dstu2; 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 ca.uhn.fhir.model.dstu2.composite.*; 012import ca.uhn.fhir.model.dstu2.resource.*; // 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 EncounterResourceProvider extends 021 ca.uhn.fhir.jpa.provider.BaseJpaResourceProviderEncounter<Encounter> 022 { 023 024 @Override 025 public Class<Encounter> getResourceType() { 026 return Encounter.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 StringAndListParam the_id, 073 074 075 @Description(shortDefinition="") 076 @OptionalParam(name="appointment", targetTypes={ } ) 077 ReferenceAndListParam theAppointment, 078 079 080 @Description(shortDefinition="") 081 @OptionalParam(name="condition", targetTypes={ } ) 082 ReferenceAndListParam theCondition, 083 084 085 @Description(shortDefinition="A date within the period the Encounter lasted") 086 @OptionalParam(name="date") 087 DateRangeParam theDate, 088 089 090 @Description(shortDefinition="") 091 @OptionalParam(name="episodeofcare", targetTypes={ } ) 092 ReferenceAndListParam theEpisodeofcare, 093 094 095 @Description(shortDefinition="") 096 @OptionalParam(name="identifier") 097 TokenAndListParam theIdentifier, 098 099 100 @Description(shortDefinition="") 101 @OptionalParam(name="incomingreferral", targetTypes={ } ) 102 ReferenceAndListParam theIncomingreferral, 103 104 105 @Description(shortDefinition="") 106 @OptionalParam(name="indication", targetTypes={ } ) 107 ReferenceAndListParam theIndication, 108 109 110 @Description(shortDefinition="Length of encounter in days") 111 @OptionalParam(name="length") 112 NumberAndListParam theLength, 113 114 115 @Description(shortDefinition="") 116 @OptionalParam(name="location", targetTypes={ } ) 117 ReferenceAndListParam theLocation, 118 119 120 @Description(shortDefinition="") 121 @OptionalParam(name="location-period") 122 DateRangeParam theLocation_period, 123 124 125 @Description(shortDefinition="") 126 @OptionalParam(name="part-of", targetTypes={ } ) 127 ReferenceAndListParam thePart_of, 128 129 130 @Description(shortDefinition="") 131 @OptionalParam(name="participant", targetTypes={ } ) 132 ReferenceAndListParam theParticipant, 133 134 135 @Description(shortDefinition="") 136 @OptionalParam(name="participant-type") 137 TokenAndListParam theParticipant_type, 138 139 140 @Description(shortDefinition="") 141 @OptionalParam(name="patient", targetTypes={ } ) 142 ReferenceAndListParam thePatient, 143 144 145 @Description(shortDefinition="") 146 @OptionalParam(name="practitioner", targetTypes={ } ) 147 ReferenceAndListParam thePractitioner, 148 149 150 @Description(shortDefinition="") 151 @OptionalParam(name="procedure", targetTypes={ } ) 152 ReferenceAndListParam theProcedure, 153 154 155 @Description(shortDefinition="") 156 @OptionalParam(name="reason") 157 TokenAndListParam theReason, 158 159 160 @Description(shortDefinition="") 161 @OptionalParam(name="special-arrangement") 162 TokenAndListParam theSpecial_arrangement, 163 164 165 @Description(shortDefinition="") 166 @OptionalParam(name="status") 167 TokenAndListParam theStatus, 168 169 170 @Description(shortDefinition="") 171 @OptionalParam(name="type") 172 TokenAndListParam theType, 173 174 @RawParam 175 Map<String, List<String>> theAdditionalRawParams, 176 177 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 178 @OptionalParam(name="_lastUpdated") 179 DateRangeParam theLastUpdated, 180 181 @IncludeParam 182 Set<Include> theIncludes, 183 184 @IncludeParam(reverse=true) 185 Set<Include> theRevIncludes, 186 187 @Sort 188 SortSpec theSort, 189 190 @ca.uhn.fhir.rest.annotation.Count 191 Integer theCount, 192 193 @ca.uhn.fhir.rest.annotation.Offset 194 Integer theOffset, 195 196 SummaryEnum theSummaryMode, 197 198 SearchTotalModeEnum theSearchTotalMode, 199 200 SearchContainedModeEnum theSearchContainedMode 201 202 ) { 203 startRequest(theServletRequest); 204 try { 205 SearchParameterMap paramMap = new SearchParameterMap(); 206 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_FILTER, theFtFilter); 207 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 208 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 209 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 210 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 211 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 212 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource); 213 paramMap.add("_has", theHas); 214 paramMap.add("_id", the_id); 215 paramMap.add("appointment", theAppointment); 216 paramMap.add("condition", theCondition); 217 paramMap.add("date", theDate); 218 paramMap.add("episodeofcare", theEpisodeofcare); 219 paramMap.add("identifier", theIdentifier); 220 paramMap.add("incomingreferral", theIncomingreferral); 221 paramMap.add("indication", theIndication); 222 paramMap.add("length", theLength); 223 paramMap.add("location", theLocation); 224 paramMap.add("location-period", theLocation_period); 225 paramMap.add("part-of", thePart_of); 226 paramMap.add("participant", theParticipant); 227 paramMap.add("participant-type", theParticipant_type); 228 paramMap.add("patient", thePatient); 229 paramMap.add("practitioner", thePractitioner); 230 paramMap.add("procedure", theProcedure); 231 paramMap.add("reason", theReason); 232 paramMap.add("special-arrangement", theSpecial_arrangement); 233 paramMap.add("status", theStatus); 234 paramMap.add("type", theType); 235 paramMap.setRevIncludes(theRevIncludes); 236 paramMap.setLastUpdated(theLastUpdated); 237 paramMap.setIncludes(theIncludes); 238 paramMap.setSort(theSort); 239 paramMap.setCount(theCount); 240 paramMap.setOffset(theOffset); 241 paramMap.setSummaryMode(theSummaryMode); 242 paramMap.setSearchTotalMode(theSearchTotalMode); 243 paramMap.setSearchContainedMode(theSearchContainedMode); 244 245 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 246 247 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 248 return retVal; 249 } finally { 250 endRequest(theServletRequest); 251 } 252 } 253 254}