Package org.flowable.engine.task
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:
-
Method Summary
Modifier and TypeMethodDescriptionthe full comment message the user had related to the task and/or process instancegetId()
unique identifier for this commentreference to the process instance on which this comment was madereference to the task on which this comment was madegetTime()
time and date when the user made the commentgetType()
reference to the type given to the commentreference to the user that made the commentvoid
setFullMessage
(String fullMessage) void
setProcessInstanceId
(String processInstanceId) void
void
void
void
-
Method Details
-
getId
String getId()unique identifier for this comment -
getUserId
String getUserId()reference to the user that made the comment -
setUserId
-
getTime
Date getTime()time and date when the user made the comment- Specified by:
getTime
in interfaceorg.flowable.common.engine.api.history.HistoricData
-
setTime
-
getTaskId
String getTaskId()reference to the task on which this comment was made -
setTaskId
-
getProcessInstanceId
String getProcessInstanceId()reference to the process instance on which this comment was made -
setProcessInstanceId
-
getType
String getType()reference to the type given to the comment -
setType
-
getFullMessage
String getFullMessage()the full comment message the user had related to the task and/or process instance- See Also:
-
setFullMessage
-