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.searchparam.SearchParameterMap; 009import ca.uhn.fhir.model.api.Include; 010import ca.uhn.fhir.model.api.annotation.*; 011import ca.uhn.fhir.model.dstu2.composite.*; 012import ca.uhn.fhir.model.dstu2.resource.*; // 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 ConceptMapResourceProvider extends 021 ca.uhn.fhir.jpa.provider.BaseJpaResourceProviderConceptMap<ConceptMap> 022 { 023 024 @Override 025 public Class<ConceptMap> getResourceType() { 026 return ConceptMap.class; 027 } 028 029 @Search(allowUnknownParams=true) 030 public ca.uhn.fhir.rest.api.server.IBundleProvider search( 031 jakarta.servlet.http.HttpServletRequest theServletRequest, 032 jakarta.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 the contents of the resource's data using a list") 061 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_LIST) 062 StringAndListParam theList, 063 064 @Description(shortDefinition="The language of the resource") 065 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_LANGUAGE) 066 TokenAndListParam theResourceLanguage, 067 068 @Description(shortDefinition="Search for resources which have the given source value (Resource.meta.source)") 069 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE) 070 UriAndListParam theSearchForSource, 071 072 @Description(shortDefinition="Return resources linked to by the given target") 073 @OptionalParam(name="_has") 074 HasAndListParam theHas, 075 076 077 078 @Description(shortDefinition="The ID of the resource") 079 @OptionalParam(name="_id") 080 StringAndListParam the_id, 081 082 083 @Description(shortDefinition="A use context assigned to the concept map") 084 @OptionalParam(name="context") 085 TokenAndListParam theContext, 086 087 088 @Description(shortDefinition="The concept map publication date") 089 @OptionalParam(name="date") 090 DateRangeParam theDate, 091 092 093 @Description(shortDefinition="") 094 @OptionalParam(name="dependson") 095 UriAndListParam theDependson, 096 097 098 @Description(shortDefinition="Text search in the description of the concept map") 099 @OptionalParam(name="description") 100 StringAndListParam theDescription, 101 102 103 @Description(shortDefinition="Additional identifier for the concept map") 104 @OptionalParam(name="identifier") 105 TokenAndListParam theIdentifier, 106 107 108 @Description(shortDefinition="Name of the concept map") 109 @OptionalParam(name="name") 110 StringAndListParam theName, 111 112 113 @Description(shortDefinition="") 114 @OptionalParam(name="product") 115 UriAndListParam theProduct, 116 117 118 @Description(shortDefinition="Name of the publisher of the concept map") 119 @OptionalParam(name="publisher") 120 StringAndListParam thePublisher, 121 122 123 @Description(shortDefinition="") 124 @OptionalParam(name="source", targetTypes={ } ) 125 ReferenceAndListParam theSource, 126 127 128 @Description(shortDefinition="") 129 @OptionalParam(name="sourcecode") 130 TokenAndListParam theSourcecode, 131 132 133 @Description(shortDefinition="") 134 @OptionalParam(name="sourcesystem") 135 UriAndListParam theSourcesystem, 136 137 138 @Description(shortDefinition="") 139 @OptionalParam(name="sourceuri", targetTypes={ } ) 140 ReferenceAndListParam theSourceuri, 141 142 143 @Description(shortDefinition="Status of the concept map") 144 @OptionalParam(name="status") 145 TokenAndListParam theStatus, 146 147 148 @Description(shortDefinition="") 149 @OptionalParam(name="target", targetTypes={ } ) 150 ReferenceAndListParam theTarget, 151 152 153 @Description(shortDefinition="") 154 @OptionalParam(name="targetcode") 155 TokenAndListParam theTargetcode, 156 157 158 @Description(shortDefinition="") 159 @OptionalParam(name="targetsystem") 160 UriAndListParam theTargetsystem, 161 162 163 @Description(shortDefinition="The URL of the concept map") 164 @OptionalParam(name="url") 165 UriAndListParam theUrl, 166 167 168 @Description(shortDefinition="The version identifier of the concept map") 169 @OptionalParam(name="version") 170 TokenAndListParam theVersion, 171 172 @RawParam 173 Map<String, List<String>> theAdditionalRawParams, 174 175 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 176 @OptionalParam(name="_lastUpdated") 177 DateRangeParam the_lastUpdated, 178 179 @IncludeParam 180 Set<Include> theIncludes, 181 182 @IncludeParam(reverse=true) 183 Set<Include> theRevIncludes, 184 185 @Sort 186 SortSpec theSort, 187 188 @ca.uhn.fhir.rest.annotation.Count 189 Integer theCount, 190 191 @ca.uhn.fhir.rest.annotation.Offset 192 Integer theOffset, 193 194 SummaryEnum theSummaryMode, 195 196 SearchTotalModeEnum theSearchTotalMode, 197 198 SearchContainedModeEnum theSearchContainedMode 199 200 ) { 201 startRequest(theServletRequest); 202 try { 203 SearchParameterMap paramMap = new SearchParameterMap(); 204 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_FILTER, theFtFilter); 205 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 206 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 207 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 208 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 209 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 210 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource); 211 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_LIST, theList); 212 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_LANGUAGE, theResourceLanguage); 213 214 paramMap.add("_has", theHas); 215 paramMap.add("_id", the_id); 216 paramMap.add("context", theContext); 217 paramMap.add("date", theDate); 218 paramMap.add("dependson", theDependson); 219 paramMap.add("description", theDescription); 220 paramMap.add("identifier", theIdentifier); 221 paramMap.add("name", theName); 222 paramMap.add("product", theProduct); 223 paramMap.add("publisher", thePublisher); 224 paramMap.add("source", theSource); 225 paramMap.add("sourcecode", theSourcecode); 226 paramMap.add("sourcesystem", theSourcesystem); 227 paramMap.add("sourceuri", theSourceuri); 228 paramMap.add("status", theStatus); 229 paramMap.add("target", theTarget); 230 paramMap.add("targetcode", theTargetcode); 231 paramMap.add("targetsystem", theTargetsystem); 232 paramMap.add("url", theUrl); 233 paramMap.add("version", theVersion); 234paramMap.setRevIncludes(theRevIncludes); 235 paramMap.setLastUpdated(the_lastUpdated); 236 paramMap.setIncludes(theIncludes); 237 paramMap.setSort(theSort); 238 paramMap.setCount(theCount); 239 paramMap.setOffset(theOffset); 240 paramMap.setSummaryMode(theSummaryMode); 241 paramMap.setSearchTotalMode(theSearchTotalMode); 242 paramMap.setSearchContainedMode(theSearchContainedMode); 243 244 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 245 246 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 247 return retVal; 248 } finally { 249 endRequest(theServletRequest); 250 } 251 } 252 253}