Package org.kie.internal.task.api
Interface TaskVariable
public interface TaskVariable
Represents single Task variable entity
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionReturns last time this variable was modifiedgetName()Returns name of the variableReturns process id that the task this variable belongs to is owned by This might be null in case ad hoc tasksReturns process instance id that the task this variable belongs to is owned by This might be null in case ad hoc tasksReturns task id that this variable belongs togetType()Return type of the variable - either input or outputgetValue()Returns value of this variable - its string representation that can be queriedvoidsetModificationDate(Date modificationDate) voidvoidsetProcessId(String processId) voidsetProcessInstanceId(String processInstanceId) voidvoidvoid
-
Method Details
-
getTaskId
Long getTaskId()Returns task id that this variable belongs to- Returns:
-
getProcessInstanceId
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- Returns:
-
getProcessId
String getProcessId()Returns process id that the task this variable belongs to is owned by This might be null in case ad hoc tasks- Returns:
-
getName
String getName()Returns name of the variable- Returns:
-
getValue
String getValue()Returns value of this variable - its string representation that can be queried- Returns:
-
getType
TaskVariable.VariableType getType()Return type of the variable - either input or output- Returns:
-
getModificationDate
Date getModificationDate()Returns last time this variable was modified- Returns:
-
setTaskId
-
setProcessInstanceId
-
setProcessId
-
setName
-
setValue
-
setType
-
setModificationDate
-