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 AllergyIntoleranceResourceProvider extends 021 JpaResourceProviderR4<AllergyIntolerance> 022 { 023 024 @Override 025 public Class<AllergyIntolerance> getResourceType() { 026 return AllergyIntolerance.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="Source of the information about the allergy") 076 @OptionalParam(name="asserter", targetTypes={ } ) 077 ReferenceAndListParam theAsserter, 078 079 080 @Description(shortDefinition="food | medication | environment | biologic") 081 @OptionalParam(name="category") 082 TokenAndListParam theCategory, 083 084 085 @Description(shortDefinition="active | inactive | resolved") 086 @OptionalParam(name="clinical-status") 087 TokenAndListParam theClinical_status, 088 089 090 @Description(shortDefinition="Code that identifies the allergy or intolerance") 091 @OptionalParam(name="code") 092 TokenAndListParam theCode, 093 094 095 @Description(shortDefinition="low | high | unable-to-assess") 096 @OptionalParam(name="criticality") 097 TokenAndListParam theCriticality, 098 099 100 @Description(shortDefinition="Date first version of the resource instance was recorded") 101 @OptionalParam(name="date") 102 DateRangeParam theDate, 103 104 105 @Description(shortDefinition="External ids for this item") 106 @OptionalParam(name="identifier") 107 TokenAndListParam theIdentifier, 108 109 110 @Description(shortDefinition="Date(/time) of last known occurrence of a reaction") 111 @OptionalParam(name="last-date") 112 DateRangeParam theLast_date, 113 114 115 @Description(shortDefinition="Clinical symptoms/signs associated with the Event") 116 @OptionalParam(name="manifestation") 117 TokenAndListParam theManifestation, 118 119 120 @Description(shortDefinition="Date(/time) when manifestations showed") 121 @OptionalParam(name="onset") 122 DateRangeParam theOnset, 123 124 125 @Description(shortDefinition="Who the sensitivity is for") 126 @OptionalParam(name="patient", targetTypes={ } ) 127 ReferenceAndListParam thePatient, 128 129 130 @Description(shortDefinition="Who recorded the sensitivity") 131 @OptionalParam(name="recorder", targetTypes={ } ) 132 ReferenceAndListParam theRecorder, 133 134 135 @Description(shortDefinition="How the subject was exposed to the substance") 136 @OptionalParam(name="route") 137 TokenAndListParam theRoute, 138 139 140 @Description(shortDefinition="mild | moderate | severe (of event as a whole)") 141 @OptionalParam(name="severity") 142 TokenAndListParam theSeverity, 143 144 145 @Description(shortDefinition="allergy | intolerance - Underlying mechanism (if known)") 146 @OptionalParam(name="type") 147 TokenAndListParam theType, 148 149 150 @Description(shortDefinition="unconfirmed | confirmed | refuted | entered-in-error") 151 @OptionalParam(name="verification-status") 152 TokenAndListParam theVerification_status, 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("asserter", theAsserter); 196 paramMap.add("category", theCategory); 197 paramMap.add("clinical-status", theClinical_status); 198 paramMap.add("code", theCode); 199 paramMap.add("criticality", theCriticality); 200 paramMap.add("date", theDate); 201 paramMap.add("identifier", theIdentifier); 202 paramMap.add("last-date", theLast_date); 203 paramMap.add("manifestation", theManifestation); 204 paramMap.add("onset", theOnset); 205 paramMap.add("patient", thePatient); 206 paramMap.add("recorder", theRecorder); 207 paramMap.add("route", theRoute); 208 paramMap.add("severity", theSeverity); 209 paramMap.add("type", theType); 210 paramMap.add("verification-status", theVerification_status); 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}