Interface HumanTaskWorkItem
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetActualOwner()Returns actual owner assigned to the taskSet<String>getAdminGroups()Returns admin groups that can administer this taskSet<String>getAdminUsers()Returns admin users that can administer this taskSet<String>getExcludedUsers()Returns excluded users that cannot work on this taskSet<String>getPotentialGroups()Returns potential groups that can work on this taskSet<String>getPotentialUsers()Returns potential users that can work on this taskStringgetReferenceName()Returns reference name of the taskStringgetTaskDescription()Returns optional description of the taskStringgetTaskName()Returns name of the taskStringgetTaskPriority()Returns optional priority of the task-
Methods inherited from interface io.automatiko.engine.api.runtime.process.WorkItem
enforce, getCompleteDate, getId, getName, getNodeInstance, getParameter, getParameters, getPhaseId, getPhaseStatus, getProcessInstance, getProcessInstanceId, getResult, getResults, getStartDate, getState, setCompleteDate, setNodeInstance, setPhaseId, setPhaseStatus, setProcessInstance, setStartDate
-
-
-
-
Method Detail
-
getTaskName
String getTaskName()
Returns name of the task- Returns:
- task name
-
getTaskDescription
String getTaskDescription()
Returns optional description of the task- Returns:
- task description if present
-
getTaskPriority
String getTaskPriority()
Returns optional priority of the task- Returns:
- task priority if present
-
getReferenceName
String getReferenceName()
Returns reference name of the task- Returns:
- task reference
-
getActualOwner
String getActualOwner()
Returns actual owner assigned to the task- Returns:
- task actual owner
-
getPotentialUsers
Set<String> getPotentialUsers()
Returns potential users that can work on this task- Returns:
- potential users
-
getPotentialGroups
Set<String> getPotentialGroups()
Returns potential groups that can work on this task- Returns:
- potential groups
-
getAdminUsers
Set<String> getAdminUsers()
Returns admin users that can administer this task- Returns:
- admin users
-
getAdminGroups
Set<String> getAdminGroups()
Returns admin groups that can administer this task- Returns:
- admin groups
-
-