public interface IColumnDefinitionRequest extends IHttpRequest
| Modifier and Type | Method and Description |
|---|---|
void |
delete()
Delete this item from the service
|
void |
delete(ICallback<ColumnDefinition> callback)
Delete this item from the service
|
IColumnDefinitionRequest |
expand(java.lang.String value)
Sets the expand clause for the request
|
ColumnDefinition |
get()
Gets the ColumnDefinition from the service
|
void |
get(ICallback<ColumnDefinition> callback)
Gets the ColumnDefinition from the service
|
ColumnDefinition |
patch(ColumnDefinition sourceColumnDefinition)
Patches this ColumnDefinition with a source
|
void |
patch(ColumnDefinition sourceColumnDefinition,
ICallback<ColumnDefinition> callback)
Patches this ColumnDefinition with a source
|
ColumnDefinition |
post(ColumnDefinition newColumnDefinition)
Posts a ColumnDefinition with a new object
|
void |
post(ColumnDefinition newColumnDefinition,
ICallback<ColumnDefinition> callback)
Posts a ColumnDefinition with a new object
|
IColumnDefinitionRequest |
select(java.lang.String value)
Sets the select clause for the request
|
addHeader, getDelay, getHeaders, getHttpMethod, getMaxRedirects, getMaxRetries, getOptions, getRequestUrl, getShouldRedirect, getShouldRetry, getUseCaches, setDelay, setMaxRedirects, setMaxRetries, setShouldRedirect, setShouldRetry, setUseCachesvoid get(ICallback<ColumnDefinition> callback)
callback - the callback to be called after success or failureColumnDefinition get() throws ClientException
ClientException - this exception occurs if the request was unable to complete for any reasonvoid delete(ICallback<ColumnDefinition> callback)
callback - the callback when the deletion action has completedvoid delete()
throws ClientException
ClientException - if there was an exception during the delete operationvoid patch(ColumnDefinition sourceColumnDefinition, ICallback<ColumnDefinition> callback)
sourceColumnDefinition - the source object with updatescallback - the callback to be called after success or failureColumnDefinition patch(ColumnDefinition sourceColumnDefinition) throws ClientException
sourceColumnDefinition - the source object with updatesClientException - this exception occurs if the request was unable to complete for any reasonvoid post(ColumnDefinition newColumnDefinition, ICallback<ColumnDefinition> callback)
newColumnDefinition - the new object to createcallback - the callback to be called after success or failureColumnDefinition post(ColumnDefinition newColumnDefinition) throws ClientException
newColumnDefinition - the new object to createClientException - this exception occurs if the request was unable to complete for any reasonIColumnDefinitionRequest select(java.lang.String value)
value - the select clauseIColumnDefinitionRequest expand(java.lang.String value)
value - the expand clause