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 CarePlanResourceProvider extends 20 JpaResourceProviderDstu3<CarePlan> 21 { 22 23 @Override 24 public Class<CarePlan> getResourceType() { 25 return CarePlan.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="Detail type of activity") 69 @OptionalParam(name="activity-code") 70 TokenAndListParam theActivity_code, 71 72 @Description(shortDefinition="Specified date occurs within period specified by CarePlan.activity.timingSchedule") 73 @OptionalParam(name="activity-date") 74 DateRangeParam theActivity_date, 75 76 @Description(shortDefinition="Activity details defined in specific resource") 77 @OptionalParam(name="activity-reference", targetTypes={ } ) 78 ReferenceAndListParam theActivity_reference, 79 80 @Description(shortDefinition="Fulfills care plan") 81 @OptionalParam(name="based-on", targetTypes={ } ) 82 ReferenceAndListParam theBased_on, 83 84 @Description(shortDefinition="Who's involved in plan?") 85 @OptionalParam(name="care-team", targetTypes={ } ) 86 ReferenceAndListParam theCare_team, 87 88 @Description(shortDefinition="Type of plan") 89 @OptionalParam(name="category") 90 TokenAndListParam theCategory, 91 92 @Description(shortDefinition="Health issues this plan addresses") 93 @OptionalParam(name="condition", targetTypes={ } ) 94 ReferenceAndListParam theCondition, 95 96 @Description(shortDefinition="Created in context of") 97 @OptionalParam(name="context", targetTypes={ } ) 98 ReferenceAndListParam theContext, 99 100 @Description(shortDefinition="Time period plan covers") 101 @OptionalParam(name="date") 102 DateRangeParam theDate, 103 104 @Description(shortDefinition="Protocol or definition") 105 @OptionalParam(name="definition", targetTypes={ } ) 106 ReferenceAndListParam theDefinition, 107 108 @Description(shortDefinition="Created in context of") 109 @OptionalParam(name="encounter", targetTypes={ } ) 110 ReferenceAndListParam theEncounter, 111 112 @Description(shortDefinition="Desired outcome of plan") 113 @OptionalParam(name="goal", targetTypes={ } ) 114 ReferenceAndListParam theGoal, 115 116 @Description(shortDefinition="External Ids for this plan") 117 @OptionalParam(name="identifier") 118 TokenAndListParam theIdentifier, 119 120 @Description(shortDefinition="proposal | plan | order | option") 121 @OptionalParam(name="intent") 122 TokenAndListParam theIntent, 123 124 @Description(shortDefinition="Part of referenced CarePlan") 125 @OptionalParam(name="part-of", targetTypes={ } ) 126 ReferenceAndListParam thePart_of, 127 128 @Description(shortDefinition="Who care plan is for") 129 @OptionalParam(name="patient", targetTypes={ } ) 130 ReferenceAndListParam thePatient, 131 132 @Description(shortDefinition="Matches if the practitioner is listed as a performer in any of the \"simple\" activities. (For performers of the detailed activities, chain through the activitydetail search parameter.)") 133 @OptionalParam(name="performer", targetTypes={ } ) 134 ReferenceAndListParam thePerformer, 135 136 @Description(shortDefinition="CarePlan replaced by this CarePlan") 137 @OptionalParam(name="replaces", targetTypes={ } ) 138 ReferenceAndListParam theReplaces, 139 140 @Description(shortDefinition="draft | active | suspended | completed | entered-in-error | cancelled | unknown") 141 @OptionalParam(name="status") 142 TokenAndListParam theStatus, 143 144 @Description(shortDefinition="Who care plan is for") 145 @OptionalParam(name="subject", targetTypes={ } ) 146 ReferenceAndListParam theSubject, 147 148 @RawParam 149 Map<String, List<String>> theAdditionalRawParams, 150 151 @IncludeParam(reverse=true) 152 Set<Include> theRevIncludes, 153 @Description(shortDefinition="Only return resources which were last updated as specified by the given range") 154 @OptionalParam(name="_lastUpdated") 155 DateRangeParam theLastUpdated, 156 157 @IncludeParam(allow= { 158 "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "CarePlan:activity-reference" , "CarePlan:based-on" , "CarePlan:care-team" , "CarePlan:condition" , "CarePlan:context" , "CarePlan:definition" , "CarePlan:encounter" , "CarePlan:goal" , "CarePlan:part-of" , "CarePlan:patient" , "CarePlan:performer" , "CarePlan:replaces" , "CarePlan:subject" , "*" 159 }) 160 Set<Include> theIncludes, 161 162 @Sort 163 SortSpec theSort, 164 165 @ca.uhn.fhir.rest.annotation.Count 166 Integer theCount, 167 168 SummaryEnum theSummaryMode, 169 170 SearchTotalModeEnum theSearchTotalMode 171 172 ) { 173 startRequest(theServletRequest); 174 try { 175 SearchParameterMap paramMap = new SearchParameterMap(); 176 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_CONTENT, theFtContent); 177 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TEXT, theFtText); 178 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_TAG, theSearchForTag); 179 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_SECURITY, theSearchForSecurity); 180 paramMap.add(ca.uhn.fhir.rest.api.Constants.PARAM_PROFILE, theSearchForProfile); 181 paramMap.add("_has", theHas); 182 paramMap.add("_id", the_id); 183 paramMap.add("_language", the_language); 184 paramMap.add("activity-code", theActivity_code); 185 paramMap.add("activity-date", theActivity_date); 186 paramMap.add("activity-reference", theActivity_reference); 187 paramMap.add("based-on", theBased_on); 188 paramMap.add("care-team", theCare_team); 189 paramMap.add("category", theCategory); 190 paramMap.add("condition", theCondition); 191 paramMap.add("context", theContext); 192 paramMap.add("date", theDate); 193 paramMap.add("definition", theDefinition); 194 paramMap.add("encounter", theEncounter); 195 paramMap.add("goal", theGoal); 196 paramMap.add("identifier", theIdentifier); 197 paramMap.add("intent", theIntent); 198 paramMap.add("part-of", thePart_of); 199 paramMap.add("patient", thePatient); 200 paramMap.add("performer", thePerformer); 201 paramMap.add("replaces", theReplaces); 202 paramMap.add("status", theStatus); 203 paramMap.add("subject", theSubject); 204 paramMap.setRevIncludes(theRevIncludes); 205 paramMap.setLastUpdated(theLastUpdated); 206 paramMap.setIncludes(theIncludes); 207 paramMap.setSort(theSort); 208 paramMap.setCount(theCount); 209 paramMap.setSummaryMode(theSummaryMode); 210 paramMap.setSearchTotalMode(theSearchTotalMode); 211 212 getDao().translateRawParameters(theAdditionalRawParams, paramMap); 213 214 ca.uhn.fhir.rest.api.server.IBundleProvider retVal = getDao().search(paramMap, theRequestDetails, theServletResponse); 215 return retVal; 216 } finally { 217 endRequest(theServletRequest); 218 } 219 } 220 221 }