Package org.activiti.api.task.model
Interface Task
-
- All Superinterfaces:
ApplicationElement
public interface Task extends ApplicationElement
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classTask.TaskStatus
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAssignee()StringgetBusinessKey()List<String>getCandidateGroups()List<String>getCandidateUsers()DategetClaimedDate()StringgetCompletedBy()DategetCompletedDate()DategetCreatedDate()StringgetDescription()DategetDueDate()LonggetDuration()StringgetFormKey()StringgetId()StringgetName()StringgetOwner()StringgetParentTaskId()intgetPriority()StringgetProcessDefinitionId()IntegergetProcessDefinitionVersion()StringgetProcessInstanceId()Task.TaskStatusgetStatus()StringgetTaskDefinitionKey()booleanisStandalone()-
Methods inherited from interface org.activiti.api.model.shared.model.ApplicationElement
getAppVersion
-
-
-
-
Method Detail
-
getId
String getId()
-
getOwner
String getOwner()
-
getAssignee
String getAssignee()
-
getName
String getName()
-
getDescription
String getDescription()
-
getCreatedDate
Date getCreatedDate()
-
getClaimedDate
Date getClaimedDate()
-
getDueDate
Date getDueDate()
-
getPriority
int getPriority()
-
getProcessDefinitionId
String getProcessDefinitionId()
-
getProcessInstanceId
String getProcessInstanceId()
-
getParentTaskId
String getParentTaskId()
-
getStatus
Task.TaskStatus getStatus()
-
getFormKey
String getFormKey()
-
getCompletedDate
Date getCompletedDate()
-
getDuration
Long getDuration()
-
getProcessDefinitionVersion
Integer getProcessDefinitionVersion()
-
getBusinessKey
String getBusinessKey()
-
isStandalone
boolean isStandalone()
-
getTaskDefinitionKey
String getTaskDefinitionKey()
-
getCompletedBy
String getCompletedBy()
-
-