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