|
void
|
clearTasks(String taskListId)
Clears all completed tasks from the specified task list.
|
|
void
|
deleteTask(String taskListId, String taskId)
Deletes the specified task from the task list.
|
|
void
|
deleteTaskList(String taskListId)
Deletes the authenticated user's specified task list.
|
|
String
|
getAccessToken()
|
|
String
|
getAccessTokenId()
|
|
String
|
getApplicationName()
|
|
String
|
getConsumerKey()
|
|
String
|
getConsumerSecret()
|
|
IdentifierPolicy
|
getIdentifierPolicy()
|
|
String
|
getScope()
|
|
Task
|
getTaskById(String taskListId, String taskId)
Returns the specified task.
|
|
TaskList
|
getTaskListById(String taskListId)
Returns the authenticated user's specified task list
|
|
List<TaskList>
|
getTaskLists(MuleMessage message, long maxResults, String pageToken)
Returns all the authenticated user's task lists.
|
|
List<Task>
|
getTasks(MuleMessage message, String taskListId, String completedMin, String completedMax, String dueMin, String dueMax, String updatedMin, long maxResults, String pageToken, boolean showDeleted, boolean showHidden, boolean showcompleted)
Returns all tasks in the specified task list.
|
|
Task
|
insertTask(String taskListId, Task task)
Creates a new task on the specified task list
|
|
TaskList
|
insertTaskList(TaskList taskList)
Creates a new task list and adds it to the authenticated user's task lists.
|
|
Task
|
move(String taskListId, String taskId, String parentId, String previousId)
Moves the specified task to another position in the task list.
|
|
void
|
postAuth()
|
|
void
|
setAccessToken(String accessToken)
|
|
void
|
setApplicationName(String applicationName)
|
|
void
|
setConsumerKey(String consumerKey)
|
|
void
|
setConsumerSecret(String consumerSecret)
|
|
void
|
setIdentifierPolicy(IdentifierPolicy identifierPolicy)
|
|
void
|
setScope(String scope)
|
|
Task
|
updateTask(String taskListId, String taskId, Task task)
Updates the specified task.
|
|
TaskList
|
updateTaskList(TaskList taskList, String taskListId)
Updates the authenticated user's specified task list.
|