Package ca.uhn.fhir.rest.gclient
Interface IPatchWithBody
-
- All Superinterfaces:
IClientExecutable<IPatchExecutable,MethodOutcome>,IPatchExecutable
- All Known Subinterfaces:
IPatchWithQueryTyped
public interface IPatchWithBody extends IPatchExecutable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IPatchWithQueryconditional(Class<? extends IBaseResource> theClass)Build a conditional URL using fluent constants on resource typesIPatchWithQueryconditional(String theResourceType)Build a conditional URL using fluent constants on resource typesIPatchExecutableconditionalByUrl(String theSearchUrl)Specifies that the update should be performed as a conditional create against a given search URL.IPatchExecutablewithId(String theId)The resource ID to patchIPatchExecutablewithId(IIdType theId)The resource ID to patch-
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.IPatchExecutable
prefer
-
-
-
-
Method Detail
-
conditional
IPatchWithQuery conditional(Class<? extends IBaseResource> theClass)
Build a conditional URL using fluent constants on resource types- Parameters:
theResourceType- The resource type to patch (e.g. "Patient.class")
-
conditional
IPatchWithQuery conditional(String theResourceType)
Build a conditional URL using fluent constants on resource types- Parameters:
theResourceType- The resource type to patch (e.g. "Patient")
-
conditionalByUrl
IPatchExecutable 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
-
withId
IPatchExecutable withId(IIdType theId)
The resource ID to patch
-
withId
IPatchExecutable withId(String theId)
The resource ID to patch
-
-