
Package ca.uhn.fhir.rest.gclient
Interface IDelete
-
public interface IDelete
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IDeleteTyped
resource(IBaseResource theResource)
IDeleteTyped
resourceById(String theResourceType, String theLogicalId)
IDeleteTyped
resourceById(IIdType theId)
IDeleteWithQuery
resourceConditionalByType(Class<? extends IBaseResource> theResourceType)
Delete using a conditional/match URL.IDeleteWithQuery
resourceConditionalByType(String theResourceType)
Delete using a conditional/match URL.IDeleteTyped
resourceConditionalByUrl(String theSearchUrl)
Specifies that the delete should be performed as a conditional delete against a given search URL.
-
-
-
Method Detail
-
resource
IDeleteTyped resource(IBaseResource theResource)
-
resourceById
IDeleteTyped resourceById(IIdType theId)
-
resourceById
IDeleteTyped resourceById(String theResourceType, String theLogicalId)
-
resourceConditionalByUrl
IDeleteTyped resourceConditionalByUrl(String theSearchUrl)
Specifies that the delete should be performed as a conditional delete 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
-
resourceConditionalByType
IDeleteWithQuery resourceConditionalByType(String theResourceType)
Delete using a conditional/match URL. The query parameters will be added in the next part of the call chain.- Since:
- HAPI 0.9 / FHIR DSTU 2
-
resourceConditionalByType
IDeleteWithQuery resourceConditionalByType(Class<? extends IBaseResource> theResourceType)
Delete using a conditional/match URL. The query parameters will be added in the next part of the call chain.- Since:
- HAPI 1.3
-
-