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