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