Uses of Class
com.atlassian.mywork.model.Task

Packages that use Task
com.atlassian.mywork.event.notification   
com.atlassian.mywork.event.task   
com.atlassian.mywork.model   
com.atlassian.mywork.rest   
com.atlassian.mywork.service   
 

Uses of Task in com.atlassian.mywork.event.notification
 

Methods in com.atlassian.mywork.event.notification that return Task
 Task NotificationStatusChangedEvent.getTask()
           
 

Constructors in com.atlassian.mywork.event.notification with parameters of type Task
NotificationStatusChangedEvent(Notification notification, Task task, Status oldStatus)
           
 

Uses of Task in com.atlassian.mywork.event.task
 

Methods in com.atlassian.mywork.event.task that return Task
 Task TaskUpdatedEvent.getOldTask()
           
 Task AbstractTaskEvent.getTask()
           
 

Constructors in com.atlassian.mywork.event.task with parameters of type Task
AbstractTaskEvent(Task task)
           
TaskCreatedEvent(Task task)
           
TaskDeletedEvent(Task task)
           
TaskMovedEvent(Task task, java.lang.Long targetId)
           
TaskUpdatedEvent(Task oldTask, Task task)
           
 

Uses of Task in com.atlassian.mywork.model
 

Methods in com.atlassian.mywork.model that return Task
 Task TaskBuilder.createTask()
           
 

Constructors in com.atlassian.mywork.model with parameters of type Task
TaskBuilder(Task task)
          Creates a builder initialised with values from the given task.
 

Uses of Task in com.atlassian.mywork.rest
 

Fields in com.atlassian.mywork.rest declared as Task
static Task Samples.TASK
           
 

Fields in com.atlassian.mywork.rest with type parameters of type Task
static java.util.List<Task> Samples.TASKS
           
 

Uses of Task in com.atlassian.mywork.service
 

Methods in com.atlassian.mywork.service that return Task
 Task TaskService.find(java.lang.String username, java.lang.String globalId)
          Find a task by username and globalId.
 Task LocalNotificationService.setStatus(java.lang.String username, long notificationId, Status status)
          Sets the status of the notification and creates/updates associated work item.
 Task LocalTaskService.update(java.lang.String username, Task task)
          Updates a task.
 Task LocalTaskService.updateNotes(java.lang.String username, long taskId, java.lang.String notes)
          Updates task notes.
 

Methods in com.atlassian.mywork.service that return types with arguments of type Task
 java.util.concurrent.Future<java.util.List<Task>> TaskService.createOrUpdate(java.lang.String username, java.util.List<Task> tasks)
          Create or update tasks for the user.
 java.util.concurrent.Future<Task> TaskService.createOrUpdate(java.lang.String username, Task task)
          Create or update a task for the user.
 java.lang.Iterable<Task> LocalTaskService.findAll(java.lang.String username)
          Finds all tasks for the given user.
 java.util.concurrent.Future<Task> TaskService.markComplete(java.lang.String username, java.lang.String globalId)
          Changes the status of the given task to Status.DONE.
 java.util.concurrent.Future<Task> TaskService.markIncomplete(java.lang.String username, java.lang.String globalId)
          Changes the status of the given task to Status.TODO.
 java.util.concurrent.Future<Task> TaskService.setTitle(java.lang.String username, java.lang.String globalId, java.lang.String title)
          Changes the title of the given task.
 

Methods in com.atlassian.mywork.service with parameters of type Task
 java.util.concurrent.Future<Task> TaskService.createOrUpdate(java.lang.String username, Task task)
          Create or update a task for the user.
 Task LocalTaskService.update(java.lang.String username, Task task)
          Updates a task.
 

Method parameters in com.atlassian.mywork.service with type arguments of type Task
 java.util.concurrent.Future<java.util.List<Task>> TaskService.createOrUpdate(java.lang.String username, java.util.List<Task> tasks)
          Create or update tasks for the user.
 



Copyright © 2012 Atlassian. All Rights Reserved.