
Package ca.uhn.fhir.rest.gclient
Interface IUpdateTyped
-
- All Superinterfaces:
IClientExecutable<IUpdateExecutable,MethodOutcome>
,IUpdateExecutable
- All Known Subinterfaces:
IUpdateWithQueryTyped
public interface IUpdateTyped extends IUpdateExecutable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IUpdateWithQuery
conditional()
IUpdateTyped
conditionalByUrl(String theSearchUrl)
Specifies that the update should be performed as a conditional create against a given search URL.IUpdateExecutable
withId(String theId)
IUpdateExecutable
withId(IIdType theId)
-
Methods inherited from interface ca.uhn.fhir.rest.gclient.IClientExecutable
accept, andLogRequestAndResponse, cacheControl, elementsSubset, encoded, encodedJson, encodedXml, execute, preferResponseType, preferResponseTypes, prettyPrint, summaryMode, withAdditionalHeader
-
Methods inherited from interface ca.uhn.fhir.rest.gclient.IUpdateExecutable
prefer
-
-
-
-
Method Detail
-
withId
IUpdateExecutable withId(IIdType theId)
-
withId
IUpdateExecutable withId(String theId)
-
conditionalByUrl
IUpdateTyped conditionalByUrl(String theSearchUrl)
Specifies that the update should be performed as a conditional create against a given search URL.- Parameters:
theSearchUrl
- The search URL to use. The format of this URL should be of the form[ResourceType]?[Parameters]
, for example:Patient?name=Smith&identifier=13.2.4.11.4%7C847366
- Since:
- HAPI 0.9 / FHIR DSTU 2
-
conditional
IUpdateWithQuery conditional()
- Since:
- HAPI 0.9 / FHIR DSTU 2
-
-