
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.provider.*; 009import ca.uhn.fhir.jpa.searchparam.SearchParameterMap; 010import ca.uhn.fhir.model.api.Include; 011import ca.uhn.fhir.model.api.annotation.*; 012import ca.uhn.fhir.model.dstu2.composite.*; 013import ca.uhn.fhir.model.dstu2.resource.*; // 014import ca.uhn.fhir.rest.annotation.*; 015import ca.uhn.fhir.rest.param.*; 016import ca.uhn.fhir.rest.api.SortSpec; 017import ca.uhn.fhir.rest.api.SummaryEnum; 018import ca.uhn.fhir.rest.api.SearchTotalModeEnum; 019import ca.uhn.fhir.rest.api.SearchContainedModeEnum; 020 021public class DiagnosticReportResourceProvider extends 022 JpaResourceProviderDstu2<DiagnosticReport> 023 { 024 025 @Override 026 public Class<DiagnosticReport> getResourceType() { 027 return DiagnosticReport.class; 028 } 029 030 @Search(allowUnknownParams=true) 031 public ca.uhn.fhir.rest.api.server.IBundleProvider search( 032 javax.servlet.http.HttpServletRequest theServletRequest, 033 javax.servlet.http.HttpServletResponse theServletResponse, 034 035 ca.uhn.fhir.rest.api.server.RequestDetails theRequestDetails, 036 037 @Description(shortDefinition="Search the contents of the resource's data using a filter") 038 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_FILTER) 039 StringAndListParam theFtFilter, 040 041 @Description(shortDefinition="Search the contents of the resource's data using a fulltext search") 042 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT) 043 StringAndListParam theFtContent, 044 045 @Description(shortDefinition="Search the contents of the resource's narrative using a fulltext search") 046 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TEXT) 047 StringAndListParam theFtText, 048 049 @Description(shortDefinition="Search for resources which have the given tag") 050 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TAG) 051 TokenAndListParam theSearchForTag, 052 053 @Description(shortDefinition="Search for resources which have the given security labels") 054 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY) 055 TokenAndListParam theSearchForSecurity, 056 057 @Description(shortDefinition="Search for resources which have the given profile") 058 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE) 059 UriAndListParam theSearchForProfile, 060 061 @Description(shortDefinition="Search for resources which have the given source value (Resource.meta.source)") 062 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE) 063 UriAndListParam theSearchForSource, 064 065 @Description(shortDefinition="Return resources linked to by the given target") 066 @OptionalParam(name="_has") 067 HasAndListParam theHas, 068 069 070 071 @Description(shortDefinition="The ID of the resource") 072 @OptionalParam(name="_id") 073 StringAndListParam the_id, 074 075 076 @Description(shortDefinition="Which diagnostic discipline/department created the report") 077 @OptionalParam(name="category") 078 TokenAndListParam theCategory, 079 080 081 @Description(shortDefinition="The code for the report as a whole, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result") 082 @OptionalParam(name="code") 083 TokenAndListParam theCode, 084 085 086 @Description(shortDefinition="The clinically relevant time of the report") 087 @OptionalParam(name="date") 088 DateRangeParam theDate, 089 090 091 @Description(shortDefinition="A coded diagnosis on the report") 092 @OptionalParam(name="diagnosis") 093 TokenAndListParam theDiagnosis, 094 095 096 @Description(shortDefinition="The Encounter when the order was made") 097 @OptionalParam(name="encounter", targetTypes={ } ) 098 ReferenceAndListParam theEncounter, 099 100 101 @Description(shortDefinition="An identifier for the report") 102 @OptionalParam(name="identifier") 103 TokenAndListParam theIdentifier, 104 105 106 @Description(shortDefinition="A reference to the image source.") 107 @OptionalParam(name="image", targetTypes={ } ) 108 ReferenceAndListParam theImage, 109 110 111 @Description(shortDefinition="When the report was issued") 112 @OptionalParam(name="issued") 113 DateRangeParam theIssued, 114 115 116 @Description(shortDefinition="The subject of the report if a patient") 117 @OptionalParam(name="patient", targetTypes={ } ) 118 ReferenceAndListParam thePatient, 119 120 121 @Description(shortDefinition="Who was the source of the report (organization)") 122 @OptionalParam(name="performer", targetTypes={ } ) 123 ReferenceAndListParam thePerformer, 124 125 126 @Description(shortDefinition="Reference to the test or procedure request.") 127 @OptionalParam(name="request", targetTypes={ } ) 128 ReferenceAndListParam theRequest, 129 130 131 @Description(shortDefinition="Link to an atomic result (observation resource)") 132 @OptionalParam(name="result", targetTypes={ } ) 133 ReferenceAndListParam theResult, 134 135 136 @Description(shortDefinition="The specimen details") 137 @OptionalParam(name="specimen", targetTypes={ } ) 138 ReferenceAndListParam theSpecimen, 139 140 141 @Description(shortDefinition="The status of the report") 142 @OptionalParam(name="status") 143 TokenAndListParam theStatus, 144 145 146 @Description(shortDefinition="The subject of the report") 147 @OptionalParam(name="subject", targetTypes={ } ) 148 ReferenceAndListParam theSubject, 149 150 @RawParam 151 Map<String, List<String>> theAdditionalRawParams, 152 153 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 154 @OptionalParam(name="_lastUpdated") 155 DateRangeParam theLastUpdated, 156 157 @IncludeParam 158 Set<Include> theIncludes, 159 160 @IncludeParam(reverse=true) 161 Set<Include> theRevIncludes, 162 163 @Sort 164 SortSpec theSort, 165 166 @ca.uhn.fhir.rest.annotation.Count 167 Integer theCount, 168 169 @ca.uhn.fhir.rest.annotation.Offset 170 Integer theOffset, 171 172 SummaryEnum theSummaryMode, 173 174 SearchTotalModeEnum theSearchTotalMode, 175 176 SearchContainedModeEnum theSearchContainedMode 177 178 ) { 179 startRequest(theServletRequest); 180 try { 181 SearchParameterMap paramMap = new SearchParameterMap(); 182 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_FILTER, theFtFilter); 183 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 184 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 185 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 186 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 187 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 188 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource); 189 paramMap.add("_has", theHas); 190 paramMap.add("_id", the_id); 191 paramMap.add("category", theCategory); 192 paramMap.add("code", theCode); 193 paramMap.add("date", theDate); 194 paramMap.add("diagnosis", theDiagnosis); 195 paramMap.add("encounter", theEncounter); 196 paramMap.add("identifier", theIdentifier); 197 paramMap.add("image", theImage); 198 paramMap.add("issued", theIssued); 199 paramMap.add("patient", thePatient); 200 paramMap.add("performer", thePerformer); 201 paramMap.add("request", theRequest); 202 paramMap.add("result", theResult); 203 paramMap.add("specimen", theSpecimen); 204 paramMap.add("status", theStatus); 205 paramMap.add("subject", theSubject); 206 paramMap.setRevIncludes(theRevIncludes); 207 paramMap.setLastUpdated(theLastUpdated); 208 paramMap.setIncludes(theIncludes); 209 paramMap.setSort(theSort); 210 paramMap.setCount(theCount); 211 paramMap.setOffset(theOffset); 212 paramMap.setSummaryMode(theSummaryMode); 213 paramMap.setSearchTotalMode(theSearchTotalMode); 214 paramMap.setSearchContainedMode(theSearchContainedMode); 215 216 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 217 218 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 219 return retVal; 220 } finally { 221 endRequest(theServletRequest); 222 } 223 } 224 225}