Package ca.uhn.fhir.rest.gclient
Interface IHistoryUntyped
-
public interface IHistoryUntyped
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description <T extends IBaseBundle>
IHistoryTyped<T>andReturnBundle(Class<T> theType)Deprecated.UsereturnBundle(Class)instead, which has the exact same functionality.<T extends IBaseBundle>
IHistoryTyped<T>returnBundle(Class<T> theType)Request that the method return a Bundle resource (such asca.uhn.fhir.model.dstu2.resource.Bundle).
-
-
-
Method Detail
-
andReturnBundle
@Deprecated <T extends IBaseBundle> IHistoryTyped<T> andReturnBundle(Class<T> theType)
Deprecated.UsereturnBundle(Class)instead, which has the exact same functionality. This was deprecated in HAPI FHIR 4.0.0 in order to be consistent with the similar method on the search operation.Request that the method return a Bundle resource (such asca.uhn.fhir.model.dstu2.resource.Bundle). Use this method if you are accessing a DSTU2+ server.
-
returnBundle
<T extends IBaseBundle> IHistoryTyped<T> returnBundle(Class<T> theType)
Request that the method return a Bundle resource (such asca.uhn.fhir.model.dstu2.resource.Bundle). Use this method if you are accessing a DSTU2+ server.- Since:
- 4.0.0
-
-