
Package ca.uhn.fhir.rest.gclient
Interface ITransaction
-
public interface ITransaction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ITransactionTyped<String>
withBundle(String theBundle)
Use the given raw text (should be a Bundle resource) as the transaction input<T extends IBaseBundle>
ITransactionTyped<T>withBundle(T theBundleResource)
Use the given Bundle resource as the transaction inputITransactionTyped<List<IBaseResource>>
withResources(List<? extends IBaseResource> theResources)
Use a list of resources as the transaction input
-
-
-
Method Detail
-
withResources
ITransactionTyped<List<IBaseResource>> withResources(List<? extends IBaseResource> theResources)
Use a list of resources as the transaction input
-
withBundle
<T extends IBaseBundle> ITransactionTyped<T> withBundle(T theBundleResource)
Use the given Bundle resource as the transaction input
-
withBundle
ITransactionTyped<String> withBundle(String theBundle)
Use the given raw text (should be a Bundle resource) as the transaction input
-
-