
Package ca.uhn.fhir.rest.gclient
Interface IReadIfNoneMatch<T extends IBaseResource>
-
public interface IReadIfNoneMatch<T extends IBaseResource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IReadExecutable<T>
returnNull()
If the server responds with anHTTP 301 Not Modified
, returnnull
.IReadExecutable<T>
returnResource(T theInstance)
If the server responds with anHTTP 301 Not Modified
, return the given instance.IReadExecutable<T>
throwNotModifiedException()
If the server responds with anHTTP 301 Not Modified
, throw aNotModifiedException
.
-
-
-
Method Detail
-
returnResource
IReadExecutable<T> returnResource(T theInstance)
If the server responds with anHTTP 301 Not Modified
, return the given instance.
-
returnNull
IReadExecutable<T> returnNull()
If the server responds with anHTTP 301 Not Modified
, returnnull
.
-
throwNotModifiedException
IReadExecutable<T> throwNotModifiedException()
If the server responds with anHTTP 301 Not Modified
, throw aNotModifiedException
.
-
-