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