
Package ca.uhn.fhir.rest.gclient
Interface IHistoryTyped<T>
-
- All Superinterfaces:
IClientExecutable<IHistoryTyped<T>,T>
public interface IHistoryTyped<T> extends IClientExecutable<IHistoryTyped<T>,T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IHistoryTyped<T>
at(DateRangeParam theDateRangeParam)
Request that the server return only the history elements between the specific rangeIHistoryTyped<T>
count(Integer theCount)
Request that the server return only up totheCount
number of resourcesIHistoryTyped<T>
since(Date theCutoff)
Request that the server return only resource versions that were created at or after the given time (inclusive)IHistoryTyped<T>
since(IPrimitiveType<Date> theCutoff)
Request that the server return only resource versions that were created at or after the given time (inclusive)-
Methods inherited from interface ca.uhn.fhir.rest.gclient.IClientExecutable
accept, andLogRequestAndResponse, cacheControl, elementsSubset, encoded, encodedJson, encodedXml, execute, preferResponseType, preferResponseTypes, prettyPrint, summaryMode, withAdditionalHeader
-
-
-
-
Method Detail
-
at
IHistoryTyped<T> at(DateRangeParam theDateRangeParam)
Request that the server return only the history elements between the specific range
-
count
IHistoryTyped<T> count(Integer theCount)
Request that the server return only up totheCount
number of resources
-
since
IHistoryTyped<T> since(IPrimitiveType<Date> theCutoff)
Request that the server return only resource versions that were created at or after the given time (inclusive)Parameter theCutoff can be any priitive type which accepts a date, such as a
DateTimeDt
,InstantType
, etc.
-
since
IHistoryTyped<T> since(Date theCutoff)
Request that the server return only resource versions that were created at or after the given time (inclusive)
-
-