public interface TaskVariable
Modifier and Type | Interface and Description |
---|---|
static class |
TaskVariable.VariableType |
Modifier and Type | Method and Description |
---|---|
Date |
getModificationDate()
Returns last time this variable was modified
|
String |
getName()
Returns name of the variable
|
String |
getProcessId()
Returns process id that the task this variable belongs to is owned by
This might be null in case ad hoc tasks
|
Long |
getProcessInstanceId()
Returns process instance id that the task this variable belongs to is owned by
This might be null in case ad hoc tasks
|
Long |
getTaskId()
Returns task id that this variable belongs to
|
TaskVariable.VariableType |
getType()
Return type of the variable - either input or output
|
String |
getValue()
Returns value of this variable - its string representation that can be queried
|
void |
setModificationDate(Date modificationDate) |
void |
setName(String name) |
void |
setProcessId(String processId) |
void |
setProcessInstanceId(Long processInstanceId) |
void |
setTaskId(Long taskId) |
void |
setType(TaskVariable.VariableType type) |
void |
setValue(String value) |
Long getTaskId()
Long getProcessInstanceId()
String getProcessId()
String getName()
String getValue()
TaskVariable.VariableType getType()
Date getModificationDate()
void setTaskId(Long taskId)
void setProcessInstanceId(Long processInstanceId)
void setProcessId(String processId)
void setName(String name)
void setValue(String value)
void setType(TaskVariable.VariableType type)
void setModificationDate(Date modificationDate)
Copyright © 2001–2019 JBoss by Red Hat. All rights reserved.