Package org.camunda.bpm.engine.task
Interface Comment
-
- All Known Implementing Classes:
CommentEntity
public interface CommentUser comments that form discussions around tasks.- Author:
- Tom Baeyens
-
-
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()comment idStringgetProcessInstanceId()reference to the process instance on which this comment was madeDategetRemovalTime()The time the historic comment will be removed.StringgetRootProcessInstanceId()reference to the root process instance id of 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 commentStringgetUserId()reference to the user that made the comment
-
-
-
Method Detail
-
getId
String getId()
comment id
-
getUserId
String getUserId()
reference to the user that made the comment
-
getTime
Date getTime()
time and date when the user made the comment
-
getTaskId
String getTaskId()
reference to the task on which this comment was made
-
getRootProcessInstanceId
String getRootProcessInstanceId()
reference to the root process instance id of the process instance on which this comment was made
-
getProcessInstanceId
String getProcessInstanceId()
reference to the process instance on which this comment was made
-
getFullMessage
String getFullMessage()
the full comment message the user had related to the task and/or process instance- See Also:
TaskService.getTaskComments(String)
-
getRemovalTime
Date getRemovalTime()
The time the historic comment will be removed.
-
-