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.searchparam.SearchParameterMap; 009import ca.uhn.fhir.model.api.Include; 010import ca.uhn.fhir.model.api.annotation.*; 011import org.hl7.fhir.r4.model.*; 012import ca.uhn.fhir.rest.annotation.*; 013import ca.uhn.fhir.rest.param.*; 014import ca.uhn.fhir.rest.api.SortSpec; 015import ca.uhn.fhir.rest.api.SummaryEnum; 016import ca.uhn.fhir.rest.api.SearchTotalModeEnum; 017import ca.uhn.fhir.rest.api.SearchContainedModeEnum; 018 019public class DocumentReferenceResourceProvider extends 020 ca.uhn.fhir.jpa.provider.BaseJpaResourceProvider<DocumentReference> 021 { 022 023 @Override 024 public Class<DocumentReference> getResourceType() { 025 return DocumentReference.class; 026 } 027 028 @Search(allowUnknownParams=true) 029 public ca.uhn.fhir.rest.api.server.IBundleProvider search( 030 javax.servlet.http.HttpServletRequest theServletRequest, 031 javax.servlet.http.HttpServletResponse theServletResponse, 032 033 ca.uhn.fhir.rest.api.server.RequestDetails theRequestDetails, 034 035 @Description(shortDefinition="Search the contents of the resource's data using a filter") 036 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_FILTER) 037 StringAndListParam theFtFilter, 038 039 @Description(shortDefinition="Search the contents of the resource's data using a fulltext search") 040 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT) 041 StringAndListParam theFtContent, 042 043 @Description(shortDefinition="Search the contents of the resource's narrative using a fulltext search") 044 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TEXT) 045 StringAndListParam theFtText, 046 047 @Description(shortDefinition="Search for resources which have the given tag") 048 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TAG) 049 TokenAndListParam theSearchForTag, 050 051 @Description(shortDefinition="Search for resources which have the given security labels") 052 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY) 053 TokenAndListParam theSearchForSecurity, 054 055 @Description(shortDefinition="Search for resources which have the given profile") 056 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE) 057 UriAndListParam theSearchForProfile, 058 059 @Description(shortDefinition="Search for resources which have the given source value (Resource.meta.source)") 060 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE) 061 UriAndListParam theSearchForSource, 062 063 @Description(shortDefinition="Return resources linked to by the given target") 064 @OptionalParam(name="_has") 065 HasAndListParam theHas, 066 067 068 069 @Description(shortDefinition="The ID of the resource") 070 @OptionalParam(name="_id") 071 TokenAndListParam the_id, 072 073 074 @Description(shortDefinition="Who/what authenticated the document") 075 @OptionalParam(name="authenticator", targetTypes={ } ) 076 ReferenceAndListParam theAuthenticator, 077 078 079 @Description(shortDefinition="Who and/or what authored the document") 080 @OptionalParam(name="author", targetTypes={ } ) 081 ReferenceAndListParam theAuthor, 082 083 084 @Description(shortDefinition="Categorization of document") 085 @OptionalParam(name="category") 086 TokenAndListParam theCategory, 087 088 089 @Description(shortDefinition="Mime type of the content, with charset etc.") 090 @OptionalParam(name="contenttype") 091 TokenAndListParam theContenttype, 092 093 094 @Description(shortDefinition="Organization which maintains the document") 095 @OptionalParam(name="custodian", targetTypes={ } ) 096 ReferenceAndListParam theCustodian, 097 098 099 @Description(shortDefinition="When this document reference was created") 100 @OptionalParam(name="date") 101 DateRangeParam theDate, 102 103 104 @Description(shortDefinition="Human-readable description") 105 @OptionalParam(name="description") 106 StringAndListParam theDescription, 107 108 109 @Description(shortDefinition="Context of the document content") 110 @OptionalParam(name="encounter", targetTypes={ } ) 111 ReferenceAndListParam theEncounter, 112 113 114 @Description(shortDefinition="Main clinical acts documented") 115 @OptionalParam(name="event") 116 TokenAndListParam theEvent, 117 118 119 @Description(shortDefinition="Kind of facility where patient was seen") 120 @OptionalParam(name="facility") 121 TokenAndListParam theFacility, 122 123 124 @Description(shortDefinition="Format/content rules for the document") 125 @OptionalParam(name="format") 126 TokenAndListParam theFormat, 127 128 129 @Description(shortDefinition="Master Version Specific Identifier") 130 @OptionalParam(name="identifier") 131 TokenAndListParam theIdentifier, 132 133 134 @Description(shortDefinition="Human language of the content (BCP-47)") 135 @OptionalParam(name="language") 136 TokenAndListParam theLanguage, 137 138 139 @Description(shortDefinition="Uri where the data can be found") 140 @OptionalParam(name="location") 141 UriAndListParam theLocation, 142 143 144 @Description(shortDefinition="Who/what is the subject of the document") 145 @OptionalParam(name="patient", targetTypes={ } ) 146 ReferenceAndListParam thePatient, 147 148 149 @Description(shortDefinition="Time of service that is being documented") 150 @OptionalParam(name="period") 151 DateRangeParam thePeriod, 152 153 154 @Description(shortDefinition="Related identifiers or resources") 155 @OptionalParam(name="related", targetTypes={ } ) 156 ReferenceAndListParam theRelated, 157 158 159 @Description(shortDefinition="Target of the relationship") 160 @OptionalParam(name="relatesto", targetTypes={ } ) 161 ReferenceAndListParam theRelatesto, 162 163 164 @Description(shortDefinition="replaces | transforms | signs | appends") 165 @OptionalParam(name="relation") 166 TokenAndListParam theRelation, 167 168 169 @Description(shortDefinition="Combination of relation and relatesTo") 170 @OptionalParam(name="relationship", compositeTypes= { ReferenceParam.class, TokenParam.class }) 171 CompositeAndListParam<ReferenceParam, TokenParam> theRelationship, 172 173 174 @Description(shortDefinition="Document security-tags") 175 @OptionalParam(name="security-label") 176 TokenAndListParam theSecurity_label, 177 178 179 @Description(shortDefinition="Additional details about where the content was created (e.g. clinical specialty)") 180 @OptionalParam(name="setting") 181 TokenAndListParam theSetting, 182 183 184 @Description(shortDefinition="current | superseded | entered-in-error") 185 @OptionalParam(name="status") 186 TokenAndListParam theStatus, 187 188 189 @Description(shortDefinition="Who/what is the subject of the document") 190 @OptionalParam(name="subject", targetTypes={ } ) 191 ReferenceAndListParam theSubject, 192 193 194 @Description(shortDefinition="Kind of document (LOINC if possible)") 195 @OptionalParam(name="type") 196 TokenAndListParam theType, 197 198 @RawParam 199 Map<String, List<String>> theAdditionalRawParams, 200 201 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 202 @OptionalParam(name="_lastUpdated") 203 DateRangeParam theLastUpdated, 204 205 @IncludeParam 206 Set<Include> theIncludes, 207 208 @IncludeParam(reverse=true) 209 Set<Include> theRevIncludes, 210 211 @Sort 212 SortSpec theSort, 213 214 @ca.uhn.fhir.rest.annotation.Count 215 Integer theCount, 216 217 @ca.uhn.fhir.rest.annotation.Offset 218 Integer theOffset, 219 220 SummaryEnum theSummaryMode, 221 222 SearchTotalModeEnum theSearchTotalMode, 223 224 SearchContainedModeEnum theSearchContainedMode 225 226 ) { 227 startRequest(theServletRequest); 228 try { 229 SearchParameterMap paramMap = new SearchParameterMap(); 230 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_FILTER, theFtFilter); 231 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 232 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 233 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 234 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 235 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 236 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource); 237 paramMap.add("_has", theHas); 238 paramMap.add("_id", the_id); 239 paramMap.add("authenticator", theAuthenticator); 240 paramMap.add("author", theAuthor); 241 paramMap.add("category", theCategory); 242 paramMap.add("contenttype", theContenttype); 243 paramMap.add("custodian", theCustodian); 244 paramMap.add("date", theDate); 245 paramMap.add("description", theDescription); 246 paramMap.add("encounter", theEncounter); 247 paramMap.add("event", theEvent); 248 paramMap.add("facility", theFacility); 249 paramMap.add("format", theFormat); 250 paramMap.add("identifier", theIdentifier); 251 paramMap.add("language", theLanguage); 252 paramMap.add("location", theLocation); 253 paramMap.add("patient", thePatient); 254 paramMap.add("period", thePeriod); 255 paramMap.add("related", theRelated); 256 paramMap.add("relatesto", theRelatesto); 257 paramMap.add("relation", theRelation); 258 paramMap.add("relationship", theRelationship); 259 paramMap.add("security-label", theSecurity_label); 260 paramMap.add("setting", theSetting); 261 paramMap.add("status", theStatus); 262 paramMap.add("subject", theSubject); 263 paramMap.add("type", theType); 264 paramMap.setRevIncludes(theRevIncludes); 265 paramMap.setLastUpdated(theLastUpdated); 266 paramMap.setIncludes(theIncludes); 267 paramMap.setSort(theSort); 268 paramMap.setCount(theCount); 269 paramMap.setOffset(theOffset); 270 paramMap.setSummaryMode(theSummaryMode); 271 paramMap.setSearchTotalMode(theSearchTotalMode); 272 paramMap.setSearchContainedMode(theSearchContainedMode); 273 274 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 275 276 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 277 return retVal; 278 } finally { 279 endRequest(theServletRequest); 280 } 281 } 282 283}