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