
001 002package ca.uhn.fhir.jpa.rp.r5; 003 004import java.util.*; 005 006import org.apache.commons.lang3.StringUtils; 007 008import ca.uhn.fhir.jpa.provider.r5.*; 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.r5.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 RequestGroupResourceProvider extends 021 JpaResourceProviderR5<RequestGroup> 022 { 023 024 @Override 025 public Class<RequestGroup> getResourceType() { 026 return RequestGroup.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="Search on the narrative of the resource") 076 @OptionalParam(name="_text") 077 SpecialAndListParam the_text, 078 079 080 @Description(shortDefinition="The author of the request group") 081 @OptionalParam(name="author", targetTypes={ } ) 082 ReferenceAndListParam theAuthor, 083 084 085 @Description(shortDefinition="The date the request group was authored") 086 @OptionalParam(name="authored") 087 DateRangeParam theAuthored, 088 089 090 @Description(shortDefinition="The code of the request group") 091 @OptionalParam(name="code") 092 TokenAndListParam theCode, 093 094 095 @Description(shortDefinition="The encounter the request group applies to") 096 @OptionalParam(name="encounter", targetTypes={ } ) 097 ReferenceAndListParam theEncounter, 098 099 100 @Description(shortDefinition="The group identifier for the request group") 101 @OptionalParam(name="group-identifier") 102 TokenAndListParam theGroup_identifier, 103 104 105 @Description(shortDefinition="External identifiers for the request group") 106 @OptionalParam(name="identifier") 107 TokenAndListParam theIdentifier, 108 109 110 @Description(shortDefinition="The FHIR-based definition from which the request group is realized") 111 @OptionalParam(name="instantiates-canonical", targetTypes={ } ) 112 ReferenceAndListParam theInstantiates_canonical, 113 114 115 @Description(shortDefinition="The external definition from which the request group is realized") 116 @OptionalParam(name="instantiates-uri") 117 UriAndListParam theInstantiates_uri, 118 119 120 @Description(shortDefinition="The intent of the request group") 121 @OptionalParam(name="intent") 122 TokenAndListParam theIntent, 123 124 125 @Description(shortDefinition="The participant in the requests in the group") 126 @OptionalParam(name="participant", targetTypes={ } ) 127 ReferenceAndListParam theParticipant, 128 129 130 @Description(shortDefinition="The identity of a patient to search for request groups") 131 @OptionalParam(name="patient", targetTypes={ } ) 132 ReferenceAndListParam thePatient, 133 134 135 @Description(shortDefinition="The priority of the request group") 136 @OptionalParam(name="priority") 137 TokenAndListParam thePriority, 138 139 140 @Description(shortDefinition="The status of the request group") 141 @OptionalParam(name="status") 142 TokenAndListParam theStatus, 143 144 145 @Description(shortDefinition="The subject that the request group is about") 146 @OptionalParam(name="subject", targetTypes={ } ) 147 ReferenceAndListParam theSubject, 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("_text", the_text); 191 paramMap.add("author", theAuthor); 192 paramMap.add("authored", theAuthored); 193 paramMap.add("code", theCode); 194 paramMap.add("encounter", theEncounter); 195 paramMap.add("group-identifier", theGroup_identifier); 196 paramMap.add("identifier", theIdentifier); 197 paramMap.add("instantiates-canonical", theInstantiates_canonical); 198 paramMap.add("instantiates-uri", theInstantiates_uri); 199 paramMap.add("intent", theIntent); 200 paramMap.add("participant", theParticipant); 201 paramMap.add("patient", thePatient); 202 paramMap.add("priority", thePriority); 203 paramMap.add("status", theStatus); 204 paramMap.add("subject", theSubject); 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}