Interface Comment

  • All Superinterfaces:
    org.flowable.common.engine.api.history.HistoricData

    public interface Comment
    extends org.flowable.common.engine.api.history.HistoricData
    User comments that form discussions around tasks.
    Author:
    Tom Baeyens, Joram Barrez
    See Also:
    TaskService.getTaskComments(String)
    • Method Detail

      • getId

        String getId()
        unique identifier for this comment
      • getUserId

        String getUserId()
        reference to the user that made the comment
      • setUserId

        void setUserId​(String userId)
      • getTime

        Date getTime()
        time and date when the user made the comment
        Specified by:
        getTime in interface org.flowable.common.engine.api.history.HistoricData
      • setTime

        void setTime​(Date time)
      • getTaskId

        String getTaskId()
        reference to the task on which this comment was made
      • setTaskId

        void setTaskId​(String taskId)
      • getProcessInstanceId

        String getProcessInstanceId()
        reference to the process instance on which this comment was made
      • setProcessInstanceId

        void setProcessInstanceId​(String processInstanceId)
      • getType

        String getType()
        reference to the type given to the comment
      • setType

        void setType​(String type)
      • setFullMessage

        void setFullMessage​(String fullMessage)