public interface IExtensionPropertyRequest extends IHttpRequest
| Modifier and Type | Method and Description |
|---|---|
void |
delete()
Delete this item from the service
|
void |
delete(ICallback<? super ExtensionProperty> callback)
Delete this item from the service
|
IExtensionPropertyRequest |
expand(java.lang.String value)
Sets the expand clause for the request
|
ExtensionProperty |
get()
Gets the ExtensionProperty from the service
|
void |
get(ICallback<? super ExtensionProperty> callback)
Gets the ExtensionProperty from the service
|
ExtensionProperty |
patch(ExtensionProperty sourceExtensionProperty)
Patches this ExtensionProperty with a source
|
void |
patch(ExtensionProperty sourceExtensionProperty,
ICallback<? super ExtensionProperty> callback)
Patches this ExtensionProperty with a source
|
ExtensionProperty |
post(ExtensionProperty newExtensionProperty)
Posts a ExtensionProperty with a new object
|
void |
post(ExtensionProperty newExtensionProperty,
ICallback<? super ExtensionProperty> callback)
Posts a ExtensionProperty with a new object
|
ExtensionProperty |
put(ExtensionProperty newExtensionProperty)
Posts a ExtensionProperty with a new object
|
void |
put(ExtensionProperty newExtensionProperty,
ICallback<? super ExtensionProperty> callback)
Posts a ExtensionProperty with a new object
|
IExtensionPropertyRequest |
select(java.lang.String value)
Sets the select clause for the request
|
addHeader, getDelay, getHeaders, getHttpMethod, getHttpRequest, getHttpRequest, getHttpRequest, getMaxRedirects, getMaxRetries, getOptions, getRequestUrl, getShouldRedirect, getShouldRetry, getUseCaches, setDelay, setMaxRedirects, setMaxRetries, setShouldRedirect, setShouldRetry, setUseCaches, withHttpMethodvoid get(ICallback<? super ExtensionProperty> callback)
callback - the callback to be called after success or failureExtensionProperty get() throws ClientException
ClientException - this exception occurs if the request was unable to complete for any reasonvoid delete(ICallback<? super ExtensionProperty> callback)
callback - the callback when the deletion action has completedvoid delete()
throws ClientException
ClientException - if there was an exception during the delete operationvoid patch(ExtensionProperty sourceExtensionProperty, ICallback<? super ExtensionProperty> callback)
sourceExtensionProperty - the source object with updatescallback - the callback to be called after success or failureExtensionProperty patch(ExtensionProperty sourceExtensionProperty) throws ClientException
sourceExtensionProperty - the source object with updatesClientException - this exception occurs if the request was unable to complete for any reasonvoid post(ExtensionProperty newExtensionProperty, ICallback<? super ExtensionProperty> callback)
newExtensionProperty - the new object to createcallback - the callback to be called after success or failureExtensionProperty post(ExtensionProperty newExtensionProperty) throws ClientException
newExtensionProperty - the new object to createClientException - this exception occurs if the request was unable to complete for any reasonvoid put(ExtensionProperty newExtensionProperty, ICallback<? super ExtensionProperty> callback)
newExtensionProperty - the object to create/updatecallback - the callback to be called after success or failureExtensionProperty put(ExtensionProperty newExtensionProperty) throws ClientException
newExtensionProperty - the object to create/updateClientException - this exception occurs if the request was unable to complete for any reasonIExtensionPropertyRequest select(java.lang.String value)
value - the select clauseIExtensionPropertyRequest expand(java.lang.String value)
value - the expand clause