Uses of Interface
com.comalatech.workflow.model.Task
-
Packages that use Task Package Description com.comalatech.workflow This package provide the services for accessing and manipulating Ad hoc Workflows informationcom.comalatech.workflow.event This package define the workflow related eventscom.comalatech.workflow.model This package define the Ad hoc Workflows object model -
-
Uses of Task in com.comalatech.workflow
Methods in com.comalatech.workflow that return Task Modifier and Type Method Description Task
TaskService. assignTask(com.atlassian.confluence.core.ContentEntityObject content, java.lang.String taskId, java.lang.String assignee, java.lang.String comment)
Assigns the given taskTask
TaskService. assignTask(com.atlassian.confluence.core.ContentEntityObject content, java.lang.String taskId, java.lang.String assignee, java.lang.String comment, java.util.Date dueDate)
Assigns the given taskTask
TaskService. completeTask(com.atlassian.confluence.core.ContentEntityObject content, java.lang.String taskId, java.lang.String comment)
Completes the given task.Task
TaskService. completeTask(com.atlassian.confluence.core.ContentEntityObject content, java.lang.String taskId, java.lang.String outcome, java.lang.String comment)
Deprecated.since 6.17.3 useTaskService.completeTask(ContentEntityObject, String, String)
insteadTask
TaskService. createTask(com.atlassian.confluence.core.ContentEntityObject content, java.lang.String taskName, java.lang.String assignee, java.lang.String comment)
Create a task on the content in the current State.Task
TaskService. createTask(com.atlassian.confluence.core.ContentEntityObject content, java.lang.String taskName, java.lang.String assignee, java.lang.String comment, java.util.Date dueDate)
Create a task on the content in the current State.Task
TaskService. editTask(com.atlassian.confluence.core.ContentEntityObject content, java.lang.String taskId, java.lang.String newTaskName, java.lang.String newComment, java.util.Date dueDate)
Edits a currently existing task. -
Uses of Task in com.comalatech.workflow.event
Methods in com.comalatech.workflow.event that return Task Modifier and Type Method Description Task
TaskUpdatedEvent. getOldTask()
Returns the previous version of the task before this update event.Task
TaskEvent. getTask()
-
Uses of Task in com.comalatech.workflow.model
Methods in com.comalatech.workflow.model that return Task Modifier and Type Method Description Task
ContentTask. getTask()
Methods in com.comalatech.workflow.model that return types with arguments of type Task Modifier and Type Method Description java.util.List<? extends Task>
State. getAllTasks()
Returns the list of all tasks (completed or not) in the statejava.util.List<? extends Task>
State. getTasks()
Returns the list of active tasks in the state
-