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