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 NamingSystemResourceProvider extends 
021        ca.uhn.fhir.jpa.provider.BaseJpaResourceProvider<NamingSystem>
022        {
023
024        @Override
025        public Class<NamingSystem> getResourceType() {
026                return NamingSystem.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="contact")
082                        StringAndListParam theContact, 
083   
084
085                        @Description(shortDefinition="")
086                        @OptionalParam(name="context")
087                        TokenAndListParam theContext,
088   
089
090                        @Description(shortDefinition="")
091                        @OptionalParam(name="date")
092                        DateRangeParam theDate, 
093   
094
095                        @Description(shortDefinition="")
096                        @OptionalParam(name="id-type")
097                        TokenAndListParam theId_type,
098   
099
100                        @Description(shortDefinition="")
101                        @OptionalParam(name="kind")
102                        TokenAndListParam theKind,
103   
104
105                        @Description(shortDefinition="")
106                        @OptionalParam(name="name")
107                        StringAndListParam theName, 
108   
109
110                        @Description(shortDefinition="")
111                        @OptionalParam(name="period")
112                        DateRangeParam thePeriod, 
113   
114
115                        @Description(shortDefinition="")
116                        @OptionalParam(name="publisher")
117                        StringAndListParam thePublisher, 
118   
119
120                        @Description(shortDefinition="")
121                        @OptionalParam(name="replaced-by", targetTypes={  } )
122                        ReferenceAndListParam theReplaced_by, 
123   
124
125                        @Description(shortDefinition="")
126                        @OptionalParam(name="responsible")
127                        StringAndListParam theResponsible, 
128   
129
130                        @Description(shortDefinition="")
131                        @OptionalParam(name="status")
132                        TokenAndListParam theStatus,
133   
134
135                        @Description(shortDefinition="")
136                        @OptionalParam(name="telecom")
137                        TokenAndListParam theTelecom,
138   
139
140                        @Description(shortDefinition="")
141                        @OptionalParam(name="type")
142                        TokenAndListParam theType,
143   
144
145                        @Description(shortDefinition="")
146                        @OptionalParam(name="value")
147                        StringAndListParam theValue, 
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("contact", theContact);
192                        paramMap.add("context", theContext);
193                        paramMap.add("date", theDate);
194                        paramMap.add("id-type", theId_type);
195                        paramMap.add("kind", theKind);
196                        paramMap.add("name", theName);
197                        paramMap.add("period", thePeriod);
198                        paramMap.add("publisher", thePublisher);
199                        paramMap.add("replaced-by", theReplaced_by);
200                        paramMap.add("responsible", theResponsible);
201                        paramMap.add("status", theStatus);
202                        paramMap.add("telecom", theTelecom);
203                        paramMap.add("type", theType);
204                        paramMap.add("value", theValue);
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}