public interface ISchemaExtensionRequest extends IHttpRequest
| Modifier and Type | Method and Description |
|---|---|
void |
delete()
Delete this item from the service
|
void |
delete(ICallback<SchemaExtension> callback)
Delete this item from the service
|
ISchemaExtensionRequest |
expand(java.lang.String value)
Sets the expand clause for the request
|
SchemaExtension |
get()
Gets the SchemaExtension from the service
|
void |
get(ICallback<SchemaExtension> callback)
Gets the SchemaExtension from the service
|
SchemaExtension |
patch(SchemaExtension sourceSchemaExtension)
Patches this SchemaExtension with a source
|
void |
patch(SchemaExtension sourceSchemaExtension,
ICallback<SchemaExtension> callback)
Patches this SchemaExtension with a source
|
SchemaExtension |
post(SchemaExtension newSchemaExtension)
Posts a SchemaExtension with a new object
|
void |
post(SchemaExtension newSchemaExtension,
ICallback<SchemaExtension> callback)
Posts a SchemaExtension with a new object
|
ISchemaExtensionRequest |
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<SchemaExtension> callback)
callback - the callback to be called after success or failureSchemaExtension get() throws ClientException
ClientException - this exception occurs if the request was unable to complete for any reasonvoid delete(ICallback<SchemaExtension> callback)
callback - the callback when the deletion action has completedvoid delete()
throws ClientException
ClientException - if there was an exception during the delete operationvoid patch(SchemaExtension sourceSchemaExtension, ICallback<SchemaExtension> callback)
sourceSchemaExtension - the source object with updatescallback - the callback to be called after success or failureSchemaExtension patch(SchemaExtension sourceSchemaExtension) throws ClientException
sourceSchemaExtension - the source object with updatesClientException - this exception occurs if the request was unable to complete for any reasonvoid post(SchemaExtension newSchemaExtension, ICallback<SchemaExtension> callback)
newSchemaExtension - the new object to createcallback - the callback to be called after success or failureSchemaExtension post(SchemaExtension newSchemaExtension) throws ClientException
newSchemaExtension - the new object to createClientException - this exception occurs if the request was unable to complete for any reasonISchemaExtensionRequest select(java.lang.String value)
value - the select clauseISchemaExtensionRequest expand(java.lang.String value)
value - the expand clause