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