Interface TaskVariable


  • public interface TaskVariable
    Represents single Task variable entity
    • Method Detail

      • 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:
      • getModificationDate

        Date getModificationDate()
        Returns last time this variable was modified
        Returns:
      • setTaskId

        void setTaskId​(Long taskId)
      • setProcessInstanceId

        void setProcessInstanceId​(Long processInstanceId)
      • setProcessId

        void setProcessId​(String processId)
      • setName

        void setName​(String name)
      • setValue

        void setValue​(String value)
      • setModificationDate

        void setModificationDate​(Date modificationDate)