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