Package org.camunda.bpm.engine.task
Interface Comment
-
- All Known Implementing Classes:
CommentEntity
public interface Comment
User comments that form discussions around tasks.- Author:
- Tom Baeyens
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFullMessage()
the full comment message the user had related to the task and/or process instanceString
getId()
comment idString
getProcessInstanceId()
reference to the process instance on which this comment was madeDate
getRemovalTime()
The time the historic comment will be removed.String
getRootProcessInstanceId()
reference to the root process instance id of the process instance on which this comment was madeString
getTaskId()
reference to the task on which this comment was madeDate
getTime()
time and date when the user made the commentString
getUserId()
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.
-
-