
Package ca.uhn.fhir.rest.gclient
Interface IGetPage
-
public interface IGetPage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IGetPageUntyped
byUrl(String thePageUrl)
Load a page of results using the a given URL and return a DSTU1 Atom bundle<T extends IBaseBundle>
IGetPageTyped<T>next(T theBundle)
Load the next page of results using the link with relation "next" in the bundle.<T extends IBaseBundle>
IGetPageTyped<T>previous(T theBundle)
Load the previous page of results using the link with relation "prev" in the bundle.
-
-
-
Method Detail
-
next
<T extends IBaseBundle> IGetPageTyped<T> next(T theBundle)
Load the next page of results using the link with relation "next" in the bundle. This method accepts a DSTU2 Bundle resource- Since:
- 1.1
-
previous
<T extends IBaseBundle> IGetPageTyped<T> previous(T theBundle)
Load the previous page of results using the link with relation "prev" in the bundle. This method accepts a DSTU2+ Bundle resource- Since:
- 1.1
-
byUrl
IGetPageUntyped byUrl(String thePageUrl)
Load a page of results using the a given URL and return a DSTU1 Atom bundle
-
-