public interface IDetectedAppRequest extends IHttpRequest
| Modifier and Type | Method and Description |
|---|---|
void |
delete()
Delete this item from the service
|
void |
delete(ICallback<? super DetectedApp> callback)
Delete this item from the service
|
IDetectedAppRequest |
expand(java.lang.String value)
Sets the expand clause for the request
|
DetectedApp |
get()
Gets the DetectedApp from the service
|
void |
get(ICallback<? super DetectedApp> callback)
Gets the DetectedApp from the service
|
DetectedApp |
patch(DetectedApp sourceDetectedApp)
Patches this DetectedApp with a source
|
void |
patch(DetectedApp sourceDetectedApp,
ICallback<? super DetectedApp> callback)
Patches this DetectedApp with a source
|
DetectedApp |
post(DetectedApp newDetectedApp)
Posts a DetectedApp with a new object
|
void |
post(DetectedApp newDetectedApp,
ICallback<? super DetectedApp> callback)
Posts a DetectedApp with a new object
|
DetectedApp |
put(DetectedApp newDetectedApp)
Posts a DetectedApp with a new object
|
void |
put(DetectedApp newDetectedApp,
ICallback<? super DetectedApp> callback)
Posts a DetectedApp with a new object
|
IDetectedAppRequest |
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 DetectedApp> callback)
callback - the callback to be called after success or failureDetectedApp get() throws ClientException
ClientException - this exception occurs if the request was unable to complete for any reasonvoid delete(ICallback<? super DetectedApp> callback)
callback - the callback when the deletion action has completedvoid delete()
throws ClientException
ClientException - if there was an exception during the delete operationvoid patch(DetectedApp sourceDetectedApp, ICallback<? super DetectedApp> callback)
sourceDetectedApp - the source object with updatescallback - the callback to be called after success or failureDetectedApp patch(DetectedApp sourceDetectedApp) throws ClientException
sourceDetectedApp - the source object with updatesClientException - this exception occurs if the request was unable to complete for any reasonvoid post(DetectedApp newDetectedApp, ICallback<? super DetectedApp> callback)
newDetectedApp - the new object to createcallback - the callback to be called after success or failureDetectedApp post(DetectedApp newDetectedApp) throws ClientException
newDetectedApp - the new object to createClientException - this exception occurs if the request was unable to complete for any reasonvoid put(DetectedApp newDetectedApp, ICallback<? super DetectedApp> callback)
newDetectedApp - the object to create/updatecallback - the callback to be called after success or failureDetectedApp put(DetectedApp newDetectedApp) throws ClientException
newDetectedApp - the object to create/updateClientException - this exception occurs if the request was unable to complete for any reasonIDetectedAppRequest select(java.lang.String value)
value - the select clauseIDetectedAppRequest expand(java.lang.String value)
value - the expand clause