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