public interface IDetectedAppRequest extends IHttpRequest
| Modifier and Type | Method and Description |
|---|---|
void |
delete()
Delete this item from the service
|
void |
delete(ICallback<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<DetectedApp> callback)
Gets the DetectedApp from the service
|
DetectedApp |
patch(DetectedApp sourceDetectedApp)
Patches this DetectedApp with a source
|
void |
patch(DetectedApp sourceDetectedApp,
ICallback<DetectedApp> callback)
Patches this DetectedApp with a source
|
DetectedApp |
post(DetectedApp newDetectedApp)
Posts a DetectedApp with a new object
|
void |
post(DetectedApp newDetectedApp,
ICallback<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, getMaxRedirects, getMaxRetries, getOptions, getRequestUrl, getShouldRedirect, getShouldRetry, getUseCaches, setDelay, setMaxRedirects, setMaxRetries, setShouldRedirect, setShouldRetry, setUseCachesvoid get(ICallback<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<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<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<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 reasonIDetectedAppRequest select(java.lang.String value)
value - the select clauseIDetectedAppRequest expand(java.lang.String value)
value - the expand clause