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 ClinicalImpressionResourceProvider extends 
021        ca.uhn.fhir.jpa.provider.BaseJpaResourceProvider<ClinicalImpression>
022        {
023
024        @Override
025        public Class<ClinicalImpression> getResourceType() {
026                return ClinicalImpression.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
065                        @Description(shortDefinition="Search for resources which have the given source value (Resource.meta.source)")
066                        @OptionalParam(name=ca.uhn.fhir.rest.api.Constants.PARAM_SOURCE)
067                        UriAndListParam theSearchForSource,
068
069                        @Description(shortDefinition="Return resources linked to by the given target")
070                        @OptionalParam(name="_has")
071                        HasAndListParam theHas, 
072
073   
074
075                        @Description(shortDefinition="The ID of the resource")
076                        @OptionalParam(name="_id")
077                        StringAndListParam the_id, 
078   
079
080                        @Description(shortDefinition="")
081                        @OptionalParam(name="action", targetTypes={  } )
082                        ReferenceAndListParam theAction, 
083   
084
085                        @Description(shortDefinition="")
086                        @OptionalParam(name="assessor", targetTypes={  } )
087                        ReferenceAndListParam theAssessor, 
088   
089
090                        @Description(shortDefinition="")
091                        @OptionalParam(name="date")
092                        DateRangeParam theDate, 
093   
094
095                        @Description(shortDefinition="")
096                        @OptionalParam(name="finding")
097                        TokenAndListParam theFinding,
098   
099
100                        @Description(shortDefinition="")
101                        @OptionalParam(name="investigation", targetTypes={  } )
102                        ReferenceAndListParam theInvestigation, 
103   
104
105                        @Description(shortDefinition="")
106                        @OptionalParam(name="patient", targetTypes={  } )
107                        ReferenceAndListParam thePatient, 
108   
109
110                        @Description(shortDefinition="")
111                        @OptionalParam(name="plan", targetTypes={  } )
112                        ReferenceAndListParam thePlan, 
113   
114
115                        @Description(shortDefinition="")
116                        @OptionalParam(name="previous", targetTypes={  } )
117                        ReferenceAndListParam thePrevious, 
118   
119
120                        @Description(shortDefinition="")
121                        @OptionalParam(name="problem", targetTypes={  } )
122                        ReferenceAndListParam theProblem, 
123   
124
125                        @Description(shortDefinition="")
126                        @OptionalParam(name="resolved")
127                        TokenAndListParam theResolved,
128   
129
130                        @Description(shortDefinition="")
131                        @OptionalParam(name="ruledout")
132                        TokenAndListParam theRuledout,
133   
134
135                        @Description(shortDefinition="")
136                        @OptionalParam(name="status")
137                        TokenAndListParam theStatus,
138   
139
140                        @Description(shortDefinition="")
141                        @OptionalParam(name="trigger", targetTypes={  } )
142                        ReferenceAndListParam theTrigger, 
143   
144
145                        @Description(shortDefinition="")
146                        @OptionalParam(name="trigger-code")
147                        TokenAndListParam theTrigger_code,
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(ca.uhn.fhir.rest.api.Constants.PARAM_LIST, theList);
189                        paramMap.add("_has", theHas);
190                        paramMap.add("_id", the_id);
191                        paramMap.add("action", theAction);
192                        paramMap.add("assessor", theAssessor);
193                        paramMap.add("date", theDate);
194                        paramMap.add("finding", theFinding);
195                        paramMap.add("investigation", theInvestigation);
196                        paramMap.add("patient", thePatient);
197                        paramMap.add("plan", thePlan);
198                        paramMap.add("previous", thePrevious);
199                        paramMap.add("problem", theProblem);
200                        paramMap.add("resolved", theResolved);
201                        paramMap.add("ruledout", theRuledout);
202                        paramMap.add("status", theStatus);
203                        paramMap.add("trigger", theTrigger);
204                        paramMap.add("trigger-code", theTrigger_code);
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}