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 TestScriptResourceProvider extends 021 JpaResourceProviderR4<TestScript> 022 { 023 024 @Override 025 public Class<TestScript> getResourceType() { 026 return TestScript.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 test script") 076 @OptionalParam(name="context") 077 TokenAndListParam theContext, 078 079 080 @Description(shortDefinition="A quantity- or range-valued use context assigned to the test script") 081 @OptionalParam(name="context-quantity") 082 QuantityAndListParam theContext_quantity, 083 084 085 @Description(shortDefinition="A type of use context assigned to the test script") 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 test script") 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 test script") 096 @OptionalParam(name="context-type-value", compositeTypes= { TokenParam.class, TokenParam.class }) 097 CompositeAndListParam<TokenParam, TokenParam> theContext_type_value, 098 099 100 @Description(shortDefinition="The test script publication date") 101 @OptionalParam(name="date") 102 DateRangeParam theDate, 103 104 105 @Description(shortDefinition="The description of the test script") 106 @OptionalParam(name="description") 107 StringAndListParam theDescription, 108 109 110 @Description(shortDefinition="External identifier for the test script") 111 @OptionalParam(name="identifier") 112 TokenAndListParam theIdentifier, 113 114 115 @Description(shortDefinition="Intended jurisdiction for the test script") 116 @OptionalParam(name="jurisdiction") 117 TokenAndListParam theJurisdiction, 118 119 120 @Description(shortDefinition="Computationally friendly name of the test script") 121 @OptionalParam(name="name") 122 StringAndListParam theName, 123 124 125 @Description(shortDefinition="Name of the publisher of the test script") 126 @OptionalParam(name="publisher") 127 StringAndListParam thePublisher, 128 129 130 @Description(shortDefinition="The current status of the test script") 131 @OptionalParam(name="status") 132 TokenAndListParam theStatus, 133 134 135 @Description(shortDefinition="TestScript required and validated capability") 136 @OptionalParam(name="testscript-capability") 137 StringAndListParam theTestscript_capability, 138 139 140 @Description(shortDefinition="The human-friendly name of the test script") 141 @OptionalParam(name="title") 142 StringAndListParam theTitle, 143 144 145 @Description(shortDefinition="The uri that identifies the test script") 146 @OptionalParam(name="url") 147 UriAndListParam theUrl, 148 149 150 @Description(shortDefinition="The business version of the test script") 151 @OptionalParam(name="version") 152 TokenAndListParam theVersion, 153 154 @RawParam 155 Map<String, List<String>> theAdditionalRawParams, 156 157 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 158 @OptionalParam(name="_lastUpdated") 159 DateRangeParam theLastUpdated, 160 161 @IncludeParam 162 Set<Include> theIncludes, 163 164 @IncludeParam(reverse=true) 165 Set<Include> theRevIncludes, 166 167 @Sort 168 SortSpec theSort, 169 170 @ca.uhn.fhir.rest.annotation.Count 171 Integer theCount, 172 173 @ca.uhn.fhir.rest.annotation.Offset 174 Integer theOffset, 175 176 SummaryEnum theSummaryMode, 177 178 SearchTotalModeEnum theSearchTotalMode, 179 180 SearchContainedModeEnum theSearchContainedMode 181 182 ) { 183 startRequest(theServletRequest); 184 try { 185 SearchParameterMap paramMap = new SearchParameterMap(); 186 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_FILTER, theFtFilter); 187 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 188 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 189 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 190 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 191 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 192 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE, theSearchForSource); 193 paramMap.add("_has", theHas); 194 paramMap.add("_id", the_id); 195 paramMap.add("context", theContext); 196 paramMap.add("context-quantity", theContext_quantity); 197 paramMap.add("context-type", theContext_type); 198 paramMap.add("context-type-quantity", theContext_type_quantity); 199 paramMap.add("context-type-value", theContext_type_value); 200 paramMap.add("date", theDate); 201 paramMap.add("description", theDescription); 202 paramMap.add("identifier", theIdentifier); 203 paramMap.add("jurisdiction", theJurisdiction); 204 paramMap.add("name", theName); 205 paramMap.add("publisher", thePublisher); 206 paramMap.add("status", theStatus); 207 paramMap.add("testscript-capability", theTestscript_capability); 208 paramMap.add("title", theTitle); 209 paramMap.add("url", theUrl); 210 paramMap.add("version", theVersion); 211 paramMap.setRevIncludes(theRevIncludes); 212 paramMap.setLastUpdated(theLastUpdated); 213 paramMap.setIncludes(theIncludes); 214 paramMap.setSort(theSort); 215 paramMap.setCount(theCount); 216 paramMap.setOffset(theOffset); 217 paramMap.setSummaryMode(theSummaryMode); 218 paramMap.setSearchTotalMode(theSearchTotalMode); 219 paramMap.setSearchContainedMode(theSearchContainedMode); 220 221 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 222 223 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 224 return retVal; 225 } finally { 226 endRequest(theServletRequest); 227 } 228 } 229 230}