
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 CapabilityStatement2ResourceProvider extends 021 JpaResourceProviderR5<CapabilityStatement2> 022 { 023 024 @Override 025 public Class<CapabilityStatement2> getResourceType() { 026 return CapabilityStatement2.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="A use context assigned to the capability statement2") 081 @OptionalParam(name="context") 082 TokenAndListParam theContext, 083 084 085 @Description(shortDefinition="A quantity- or range-valued use context assigned to the capability statement2") 086 @OptionalParam(name="context-quantity") 087 QuantityAndListParam theContext_quantity, 088 089 090 @Description(shortDefinition="A type of use context assigned to the capability statement2") 091 @OptionalParam(name="context-type") 092 TokenAndListParam theContext_type, 093 094 095 @Description(shortDefinition="A use context type and quantity- or range-based value assigned to the capability statement2") 096 @OptionalParam(name="context-type-quantity", compositeTypes= { TokenParam.class, QuantityParam.class }) 097 CompositeAndListParam<TokenParam, QuantityParam> theContext_type_quantity, 098 099 100 @Description(shortDefinition="A use context type and value assigned to the capability statement2") 101 @OptionalParam(name="context-type-value", compositeTypes= { TokenParam.class, TokenParam.class }) 102 CompositeAndListParam<TokenParam, TokenParam> theContext_type_value, 103 104 105 @Description(shortDefinition="The capability statement2 publication date") 106 @OptionalParam(name="date") 107 DateRangeParam theDate, 108 109 110 @Description(shortDefinition="The description of the capability statement2") 111 @OptionalParam(name="description") 112 StringAndListParam theDescription, 113 114 115 @Description(shortDefinition="The version of FHIR") 116 @OptionalParam(name="fhirversion") 117 TokenAndListParam theFhirversion, 118 119 120 @Description(shortDefinition="formats supported (xml | json | ttl | mime type)") 121 @OptionalParam(name="format") 122 TokenAndListParam theFormat, 123 124 125 @Description(shortDefinition="Implementation guides supported") 126 @OptionalParam(name="guide", targetTypes={ } ) 127 ReferenceAndListParam theGuide, 128 129 130 @Description(shortDefinition="Intended jurisdiction for the capability statement2") 131 @OptionalParam(name="jurisdiction") 132 TokenAndListParam theJurisdiction, 133 134 135 @Description(shortDefinition="Mode - restful (server/client) or messaging (sender/receiver)") 136 @OptionalParam(name="mode") 137 TokenAndListParam theMode, 138 139 140 @Description(shortDefinition="Computationally friendly name of the capability statement2") 141 @OptionalParam(name="name") 142 StringAndListParam theName, 143 144 145 @Description(shortDefinition="Name of the publisher of the capability statement2") 146 @OptionalParam(name="publisher") 147 StringAndListParam thePublisher, 148 149 150 @Description(shortDefinition="Name of a resource mentioned in a capability statement") 151 @OptionalParam(name="resource") 152 TokenAndListParam theResource, 153 154 155 @Description(shortDefinition="A profile id invoked in a capability statement") 156 @OptionalParam(name="resource-profile", targetTypes={ } ) 157 ReferenceAndListParam theResource_profile, 158 159 160 @Description(shortDefinition="Part of the name of a software application") 161 @OptionalParam(name="software") 162 StringAndListParam theSoftware, 163 164 165 @Description(shortDefinition="The current status of the capability statement2") 166 @OptionalParam(name="status") 167 TokenAndListParam theStatus, 168 169 170 @Description(shortDefinition="Profiles for use cases supported") 171 @OptionalParam(name="supported-profile", targetTypes={ } ) 172 ReferenceAndListParam theSupported_profile, 173 174 175 @Description(shortDefinition="The human-friendly name of the capability statement2") 176 @OptionalParam(name="title") 177 StringAndListParam theTitle, 178 179 180 @Description(shortDefinition="The uri that identifies the capability statement2") 181 @OptionalParam(name="url") 182 UriAndListParam theUrl, 183 184 185 @Description(shortDefinition="The business version of the capability statement2") 186 @OptionalParam(name="version") 187 TokenAndListParam theVersion, 188 189 @RawParam 190 Map<String, List<String>> theAdditionalRawParams, 191 192 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 193 @OptionalParam(name="_lastUpdated") 194 DateRangeParam theLastUpdated, 195 196 @IncludeParam 197 Set<Include> theIncludes, 198 199 @IncludeParam(reverse=true) 200 Set<Include> theRevIncludes, 201 202 @Sort 203 SortSpec theSort, 204 205 @ca.uhn.fhir.rest.annotation.Count 206 Integer theCount, 207 208 @ca.uhn.fhir.rest.annotation.Offset 209 Integer theOffset, 210 211 SummaryEnum theSummaryMode, 212 213 SearchTotalModeEnum theSearchTotalMode, 214 215 SearchContainedModeEnum theSearchContainedMode 216 217 ) { 218 startRequest(theServletRequest); 219 try { 220 SearchParameterMap paramMap = new SearchParameterMap(); 221 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_FILTER, theFtFilter); 222 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 223 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 224 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 225 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 226 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 227 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource); 228 paramMap.add("_has", theHas); 229 paramMap.add("_id", the_id); 230 paramMap.add("_text", the_text); 231 paramMap.add("context", theContext); 232 paramMap.add("context-quantity", theContext_quantity); 233 paramMap.add("context-type", theContext_type); 234 paramMap.add("context-type-quantity", theContext_type_quantity); 235 paramMap.add("context-type-value", theContext_type_value); 236 paramMap.add("date", theDate); 237 paramMap.add("description", theDescription); 238 paramMap.add("fhirversion", theFhirversion); 239 paramMap.add("format", theFormat); 240 paramMap.add("guide", theGuide); 241 paramMap.add("jurisdiction", theJurisdiction); 242 paramMap.add("mode", theMode); 243 paramMap.add("name", theName); 244 paramMap.add("publisher", thePublisher); 245 paramMap.add("resource", theResource); 246 paramMap.add("resource-profile", theResource_profile); 247 paramMap.add("software", theSoftware); 248 paramMap.add("status", theStatus); 249 paramMap.add("supported-profile", theSupported_profile); 250 paramMap.add("title", theTitle); 251 paramMap.add("url", theUrl); 252 paramMap.add("version", theVersion); 253 paramMap.setRevIncludes(theRevIncludes); 254 paramMap.setLastUpdated(theLastUpdated); 255 paramMap.setIncludes(theIncludes); 256 paramMap.setSort(theSort); 257 paramMap.setCount(theCount); 258 paramMap.setOffset(theOffset); 259 paramMap.setSummaryMode(theSummaryMode); 260 paramMap.setSearchTotalMode(theSearchTotalMode); 261 paramMap.setSearchContainedMode(theSearchContainedMode); 262 263 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 264 265 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 266 return retVal; 267 } finally { 268 endRequest(theServletRequest); 269 } 270 } 271 272}