|
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
|
getApplicationName()
|
|
String
|
getConsumerKey()
|
|
String
|
getConsumerSecret()
|
|
String
|
getScope()
|
|
Task
|
getTaskById(String taskListId, String taskId)
Returns the specified task.
|
|
TaskList
|
getTaskListById(String taskListId)
Returns the authenticated user's specified task list
|
|
PagingDelegate<TaskList>
|
getTaskLists(PagingConfiguration pagingConfiguration)
Returns all the authenticated user's task lists.
|
|
PagingDelegate<Task>
|
getTasks(String taskListId, String completedMin, String completedMax, String dueMin, String dueMax, String updatedMin, boolean showDeleted, boolean showHidden, boolean showcompleted, PagingConfiguration pagingConfiguration)
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
|
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.
|