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.provider.r4.*; 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.r4.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 ChargeItemDefinitionResourceProvider extends 021 JpaResourceProviderR4<ChargeItemDefinition> 022 { 023 024 @Override 025 public Class<ChargeItemDefinition> getResourceType() { 026 return ChargeItemDefinition.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="A use context assigned to the charge item definition") 076 @OptionalParam(name="context") 077 TokenAndListParam theContext, 078 079 080 @Description(shortDefinition="A quantity- or range-valued use context assigned to the charge item definition") 081 @OptionalParam(name="context-quantity") 082 QuantityAndListParam theContext_quantity, 083 084 085 @Description(shortDefinition="A type of use context assigned to the charge item definition") 086 @OptionalParam(name="context-type") 087 TokenAndListParam theContext_type, 088 089 090 @Description(shortDefinition="A use context type and quantity- or range-based value assigned to the charge item definition") 091 @OptionalParam(name="context-type-quantity", compositeTypes= { TokenParam.class, QuantityParam.class }) 092 CompositeAndListParam<TokenParam, QuantityParam> theContext_type_quantity, 093 094 095 @Description(shortDefinition="A use context type and value assigned to the charge item definition") 096 @OptionalParam(name="context-type-value", compositeTypes= { TokenParam.class, TokenParam.class }) 097 CompositeAndListParam<TokenParam, TokenParam> theContext_type_value, 098 099 100 @Description(shortDefinition="The charge item definition publication date") 101 @OptionalParam(name="date") 102 DateRangeParam theDate, 103 104 105 @Description(shortDefinition="The description of the charge item definition") 106 @OptionalParam(name="description") 107 StringAndListParam theDescription, 108 109 110 @Description(shortDefinition="The time during which the charge item definition is intended to be in use") 111 @OptionalParam(name="effective") 112 DateRangeParam theEffective, 113 114 115 @Description(shortDefinition="External identifier for the charge item definition") 116 @OptionalParam(name="identifier") 117 TokenAndListParam theIdentifier, 118 119 120 @Description(shortDefinition="Intended jurisdiction for the charge item definition") 121 @OptionalParam(name="jurisdiction") 122 TokenAndListParam theJurisdiction, 123 124 125 @Description(shortDefinition="Name of the publisher of the charge item definition") 126 @OptionalParam(name="publisher") 127 StringAndListParam thePublisher, 128 129 130 @Description(shortDefinition="The current status of the charge item definition") 131 @OptionalParam(name="status") 132 TokenAndListParam theStatus, 133 134 135 @Description(shortDefinition="The human-friendly name of the charge item definition") 136 @OptionalParam(name="title") 137 StringAndListParam theTitle, 138 139 140 @Description(shortDefinition="The uri that identifies the charge item definition") 141 @OptionalParam(name="url") 142 UriAndListParam theUrl, 143 144 145 @Description(shortDefinition="The business version of the charge item definition") 146 @OptionalParam(name="version") 147 TokenAndListParam theVersion, 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("context", theContext); 191 paramMap.add("context-quantity", theContext_quantity); 192 paramMap.add("context-type", theContext_type); 193 paramMap.add("context-type-quantity", theContext_type_quantity); 194 paramMap.add("context-type-value", theContext_type_value); 195 paramMap.add("date", theDate); 196 paramMap.add("description", theDescription); 197 paramMap.add("effective", theEffective); 198 paramMap.add("identifier", theIdentifier); 199 paramMap.add("jurisdiction", theJurisdiction); 200 paramMap.add("publisher", thePublisher); 201 paramMap.add("status", theStatus); 202 paramMap.add("title", theTitle); 203 paramMap.add("url", theUrl); 204 paramMap.add("version", theVersion); 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}