Package org.flowable.engine.task
Interface Comment
-
- All Superinterfaces:
HistoricData
- All Known Subinterfaces:
CommentEntity
- All Known Implementing Classes:
CommentEntityImpl
public interface Comment extends HistoricData
User comments that form discussions around tasks.- Author:
- Tom Baeyens, Joram Barrez
- See Also:
TaskService.getTaskComments(String)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFullMessage()the full comment message the user had related to the task and/or process instanceStringgetId()unique identifier for this commentStringgetProcessInstanceId()reference to the process instance on which this comment was madeStringgetTaskId()reference to the task on which this comment was madeDategetTime()time and date when the user made the commentStringgetType()reference to the type given to the commentStringgetUserId()reference to the user that made the commentvoidsetFullMessage(String fullMessage)voidsetProcessInstanceId(String processInstanceId)voidsetTaskId(String taskId)voidsetTime(Date time)voidsetType(String type)voidsetUserId(String userId)
-
-
-
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:
getTimein interfaceHistoricData
-
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)
-
getFullMessage
String getFullMessage()
the full comment message the user had related to the task and/or process instance- See Also:
TaskService.getTaskComments(String)
-
setFullMessage
void setFullMessage(String fullMessage)
-
-