001 002package ca.uhn.fhir.jpa.rp.dstu3; 003 004import java.util.*; 005 006import org.apache.commons.lang3.StringUtils; 007 008import ca.uhn.fhir.jpa.provider.dstu3.*; 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.dstu3.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 StructureDefinitionResourceProvider extends 021 BaseJpaResourceProviderStructureDefinitionDstu3 022 { 023 024 @Override 025 public Class<StructureDefinition> getResourceType() { 026 return StructureDefinition.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="Whether the structure is abstract") 076 @OptionalParam(name="abstract") 077 TokenAndListParam theAbstract, 078 079 080 @Description(shortDefinition="Definition that this type is constrained/specialized from") 081 @OptionalParam(name="base") 082 UriAndListParam theBase, 083 084 085 @Description(shortDefinition="Path that identifies the base element") 086 @OptionalParam(name="base-path") 087 TokenAndListParam theBase_path, 088 089 090 @Description(shortDefinition="resource | datatype | extension") 091 @OptionalParam(name="context-type") 092 TokenAndListParam theContext_type, 093 094 095 @Description(shortDefinition="The structure definition publication date") 096 @OptionalParam(name="date") 097 DateRangeParam theDate, 098 099 100 @Description(shortDefinition="specialization | constraint - How relates to base definition") 101 @OptionalParam(name="derivation") 102 TokenAndListParam theDerivation, 103 104 105 @Description(shortDefinition="The description of the structure definition") 106 @OptionalParam(name="description") 107 StringAndListParam theDescription, 108 109 110 @Description(shortDefinition="For testing purposes, not real usage") 111 @OptionalParam(name="experimental") 112 TokenAndListParam theExperimental, 113 114 115 @Description(shortDefinition="Where the extension can be used in instances") 116 @OptionalParam(name="ext-context") 117 StringAndListParam theExt_context, 118 119 120 @Description(shortDefinition="External identifier for the structure definition") 121 @OptionalParam(name="identifier") 122 TokenAndListParam theIdentifier, 123 124 125 @Description(shortDefinition="Intended jurisdiction for the structure definition") 126 @OptionalParam(name="jurisdiction") 127 TokenAndListParam theJurisdiction, 128 129 130 @Description(shortDefinition="A code for the profile") 131 @OptionalParam(name="keyword") 132 TokenAndListParam theKeyword, 133 134 135 @Description(shortDefinition="primitive-type | complex-type | resource | logical") 136 @OptionalParam(name="kind") 137 TokenAndListParam theKind, 138 139 140 @Description(shortDefinition="Computationally friendly name of the structure definition") 141 @OptionalParam(name="name") 142 StringAndListParam theName, 143 144 145 @Description(shortDefinition="A path that is constrained in the profile") 146 @OptionalParam(name="path") 147 TokenAndListParam thePath, 148 149 150 @Description(shortDefinition="Name of the publisher of the structure definition") 151 @OptionalParam(name="publisher") 152 StringAndListParam thePublisher, 153 154 155 @Description(shortDefinition="The current status of the structure definition") 156 @OptionalParam(name="status") 157 TokenAndListParam theStatus, 158 159 160 @Description(shortDefinition="The human-friendly name of the structure definition") 161 @OptionalParam(name="title") 162 StringAndListParam theTitle, 163 164 165 @Description(shortDefinition="Type defined or constrained by this structure") 166 @OptionalParam(name="type") 167 TokenAndListParam theType, 168 169 170 @Description(shortDefinition="The uri that identifies the structure definition") 171 @OptionalParam(name="url") 172 UriAndListParam theUrl, 173 174 175 @Description(shortDefinition="A vocabulary binding reference") 176 @OptionalParam(name="valueset", targetTypes={ } ) 177 ReferenceAndListParam theValueset, 178 179 180 @Description(shortDefinition="The business version of the structure definition") 181 @OptionalParam(name="version") 182 TokenAndListParam theVersion, 183 184 @RawParam 185 Map<String, List<String>> theAdditionalRawParams, 186 187 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 188 @OptionalParam(name="_lastUpdated") 189 DateRangeParam theLastUpdated, 190 191 @IncludeParam 192 Set<Include> theIncludes, 193 194 @IncludeParam(reverse=true) 195 Set<Include> theRevIncludes, 196 197 @Sort 198 SortSpec theSort, 199 200 @ca.uhn.fhir.rest.annotation.Count 201 Integer theCount, 202 203 @ca.uhn.fhir.rest.annotation.Offset 204 Integer theOffset, 205 206 SummaryEnum theSummaryMode, 207 208 SearchTotalModeEnum theSearchTotalMode, 209 210 SearchContainedModeEnum theSearchContainedMode 211 212 ) { 213 startRequest(theServletRequest); 214 try { 215 SearchParameterMap paramMap = new SearchParameterMap(); 216 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_FILTER, theFtFilter); 217 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 218 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 219 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 220 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 221 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 222 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource); 223 paramMap.add("_has", theHas); 224 paramMap.add("_id", the_id); 225 paramMap.add("abstract", theAbstract); 226 paramMap.add("base", theBase); 227 paramMap.add("base-path", theBase_path); 228 paramMap.add("context-type", theContext_type); 229 paramMap.add("date", theDate); 230 paramMap.add("derivation", theDerivation); 231 paramMap.add("description", theDescription); 232 paramMap.add("experimental", theExperimental); 233 paramMap.add("ext-context", theExt_context); 234 paramMap.add("identifier", theIdentifier); 235 paramMap.add("jurisdiction", theJurisdiction); 236 paramMap.add("keyword", theKeyword); 237 paramMap.add("kind", theKind); 238 paramMap.add("name", theName); 239 paramMap.add("path", thePath); 240 paramMap.add("publisher", thePublisher); 241 paramMap.add("status", theStatus); 242 paramMap.add("title", theTitle); 243 paramMap.add("type", theType); 244 paramMap.add("url", theUrl); 245 paramMap.add("valueset", theValueset); 246 paramMap.add("version", theVersion); 247 paramMap.setRevIncludes(theRevIncludes); 248 paramMap.setLastUpdated(theLastUpdated); 249 paramMap.setIncludes(theIncludes); 250 paramMap.setSort(theSort); 251 paramMap.setCount(theCount); 252 paramMap.setOffset(theOffset); 253 paramMap.setSummaryMode(theSummaryMode); 254 paramMap.setSearchTotalMode(theSearchTotalMode); 255 paramMap.setSearchContainedMode(theSearchContainedMode); 256 257 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 258 259 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 260 return retVal; 261 } finally { 262 endRequest(theServletRequest); 263 } 264 } 265 266}