1 2 package ca.uhn.fhir.jpa.rp.dstu3; 3 4 import java.util.*; 5 6 import org.apache.commons.lang3.StringUtils; 7 8 import ca.uhn.fhir.jpa.provider.dstu3.*; 9 import ca.uhn.fhir.jpa.searchparam.SearchParameterMap; 10 import ca.uhn.fhir.model.api.Include; 11 import ca.uhn.fhir.model.api.annotation.*; 12 import org.hl7.fhir.dstu3.model.*; 13 import ca.uhn.fhir.rest.annotation.*; 14 import ca.uhn.fhir.rest.param.*; 15 import ca.uhn.fhir.rest.api.SortSpec; 16 import ca.uhn.fhir.rest.api.SummaryEnum; 17 import ca.uhn.fhir.rest.api.SearchTotalModeEnum; 18 19 public class PlanDefinitionResourceProvider extends 20 JpaResourceProviderDstu3<PlanDefinition> 21 { 22 23 @Override 24 public Class<PlanDefinition> getResourceType() { 25 return PlanDefinition.class; 26 } 27 28 @Search(allowUnknownParams=true) 29 public ca.uhn.fhir.rest.api.server.IBundleProvider search( 30 javax.servlet.http.HttpServletRequest theServletRequest, 31 javax.servlet.http.HttpServletResponse theServletResponse, 32 33 ca.uhn.fhir.rest.api.server.RequestDetails theRequestDetails, 34 35 @Description(shortDefinition="Search the contents of the resource's data using a fulltext search") 36 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT) 37 StringAndListParam theFtContent, 38 39 @Description(shortDefinition="Search the contents of the resource's narrative using a fulltext search") 40 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TEXT) 41 StringAndListParam theFtText, 42 43 @Description(shortDefinition="Search for resources which have the given tag") 44 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_TAG) 45 TokenAndListParam theSearchForTag, 46 47 @Description(shortDefinition="Search for resources which have the given security labels") 48 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY) 49 TokenAndListParam theSearchForSecurity, 50 51 @Description(shortDefinition="Search for resources which have the given profile") 52 @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE) 53 UriAndListParam theSearchForProfile, 54 55 @Description(shortDefinition="Return resources linked to by the given target") 56 @OptionalParam(name="_has") 57 HasAndListParam theHas, 58 59 60 @Description(shortDefinition="The ID of the resource") 61 @OptionalParam(name="_id") 62 TokenAndListParam the_id, 63 64 @Description(shortDefinition="The language of the resource") 65 @OptionalParam(name="_language") 66 StringAndListParam the_language, 67 68 @Description(shortDefinition="What resource is being referenced") 69 @OptionalParam(name="composed-of", targetTypes={ } ) 70 ReferenceAndListParam theComposed_of, 71 72 @Description(shortDefinition="The plan definition publication date") 73 @OptionalParam(name="date") 74 DateRangeParam theDate, 75 76 @Description(shortDefinition="What resource is being referenced") 77 @OptionalParam(name="depends-on", targetTypes={ } ) 78 ReferenceAndListParam theDepends_on, 79 80 @Description(shortDefinition="What resource is being referenced") 81 @OptionalParam(name="derived-from", targetTypes={ } ) 82 ReferenceAndListParam theDerived_from, 83 84 @Description(shortDefinition="The description of the plan definition") 85 @OptionalParam(name="description") 86 StringAndListParam theDescription, 87 88 @Description(shortDefinition="The time during which the plan definition is intended to be in use") 89 @OptionalParam(name="effective") 90 DateRangeParam theEffective, 91 92 @Description(shortDefinition="External identifier for the plan definition") 93 @OptionalParam(name="identifier") 94 TokenAndListParam theIdentifier, 95 96 @Description(shortDefinition="Intended jurisdiction for the plan definition") 97 @OptionalParam(name="jurisdiction") 98 TokenAndListParam theJurisdiction, 99 100 @Description(shortDefinition="Computationally friendly name of the plan definition") 101 @OptionalParam(name="name") 102 StringAndListParam theName, 103 104 @Description(shortDefinition="What resource is being referenced") 105 @OptionalParam(name="predecessor", targetTypes={ } ) 106 ReferenceAndListParam thePredecessor, 107 108 @Description(shortDefinition="Name of the publisher of the plan definition") 109 @OptionalParam(name="publisher") 110 StringAndListParam thePublisher, 111 112 @Description(shortDefinition="The current status of the plan definition") 113 @OptionalParam(name="status") 114 TokenAndListParam theStatus, 115 116 @Description(shortDefinition="What resource is being referenced") 117 @OptionalParam(name="successor", targetTypes={ } ) 118 ReferenceAndListParam theSuccessor, 119 120 @Description(shortDefinition="The human-friendly name of the plan definition") 121 @OptionalParam(name="title") 122 StringAndListParam theTitle, 123 124 @Description(shortDefinition="Topics associated with the module") 125 @OptionalParam(name="topic") 126 TokenAndListParam theTopic, 127 128 @Description(shortDefinition="The uri that identifies the plan definition") 129 @OptionalParam(name="url") 130 UriAndListParam theUrl, 131 132 @Description(shortDefinition="The business version of the plan definition") 133 @OptionalParam(name="version") 134 TokenAndListParam theVersion, 135 136 @RawParam 137 Map<String, List<String>> theAdditionalRawParams, 138 139 @IncludeParam(reverse=true) 140 Set<Include> theRevIncludes, 141 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 142 @OptionalParam(name="_lastUpdated") 143 DateRangeParam theLastUpdated, 144 145 @IncludeParam(allow= { 146 "PlanDefinition:composed-of" , "PlanDefinition:depends-on" , "PlanDefinition:derived-from" , "PlanDefinition:predecessor" , "PlanDefinition:successor" , "PlanDefinition:composed-of" , "PlanDefinition:depends-on" , "PlanDefinition:derived-from" , "PlanDefinition:predecessor" , "PlanDefinition:successor" , "PlanDefinition:composed-of" , "PlanDefinition:depends-on" , "PlanDefinition:derived-from" , "PlanDefinition:predecessor" , "PlanDefinition:successor" , "PlanDefinition:composed-of" , "PlanDefinition:depends-on" , "PlanDefinition:derived-from" , "PlanDefinition:predecessor" , "PlanDefinition:successor" , "PlanDefinition:composed-of" , "PlanDefinition:depends-on" , "PlanDefinition:derived-from" , "PlanDefinition:predecessor" , "PlanDefinition:successor" , "*" 147 }) 148 Set<Include> theIncludes, 149 150 @Sort 151 SortSpec theSort, 152 153 @ca.uhn.fhir.rest.annotation.Count 154 Integer theCount, 155 156 SummaryEnum theSummaryMode, 157 158 SearchTotalModeEnum theSearchTotalMode 159 160 ) { 161 startRequest(theServletRequest); 162 try { 163 SearchParameterMap paramMap = new SearchParameterMap(); 164 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 165 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 166 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 167 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 168 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 169 paramMap.add("_has", theHas); 170 paramMap.add("_id", the_id); 171 paramMap.add("_language", the_language); 172 paramMap.add("composed-of", theComposed_of); 173 paramMap.add("date", theDate); 174 paramMap.add("depends-on", theDepends_on); 175 paramMap.add("derived-from", theDerived_from); 176 paramMap.add("description", theDescription); 177 paramMap.add("effective", theEffective); 178 paramMap.add("identifier", theIdentifier); 179 paramMap.add("jurisdiction", theJurisdiction); 180 paramMap.add("name", theName); 181 paramMap.add("predecessor", thePredecessor); 182 paramMap.add("publisher", thePublisher); 183 paramMap.add("status", theStatus); 184 paramMap.add("successor", theSuccessor); 185 paramMap.add("title", theTitle); 186 paramMap.add("topic", theTopic); 187 paramMap.add("url", theUrl); 188 paramMap.add("version", theVersion); 189 paramMap.setRevIncludes(theRevIncludes); 190 paramMap.setLastUpdated(theLastUpdated); 191 paramMap.setIncludes(theIncludes); 192 paramMap.setSort(theSort); 193 paramMap.setCount(theCount); 194 paramMap.setSummaryMode(theSummaryMode); 195 paramMap.setSearchTotalMode(theSearchTotalMode); 196 197 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 198 199 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 200 return retVal; 201 } finally { 202 endRequest(theServletRequest); 203 } 204 } 205 206 }