Package ca.uhn.fhir.rest.gclient
Interface IUntypedQuery<T>
public interface IUntypedQuery<T>
-
Method Summary
Modifier and TypeMethodDescriptionPerform a search directly by URL.forResource
(Class<? extends IBaseResource> theClass) forResource
(String theResourceName)
-
Method Details
-
forAllResources
-
forResource
-
forResource
-
byUrl
Perform a search directly by URL. It is usually better to construct the URL using theforAllResources()
,forResource(Class)
etc, but sometimes it is useful to simply search by entering a search URL directly.- Parameters:
theSearchUrl
- The URL to search for. Note that this URL may be complete (e.g. "http://example.com/base/Patient?name=foo") in which case the client's base URL will be ignored. Or it can be relative (e.g. "Patient?name=foo") in which case the client's base URL will be used.
-