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