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 java.lang.String
getFullMessage()
the full comment message the user had related to the task and/or process instancejava.lang.String
getId()
comment idjava.lang.String
getProcessInstanceId()
reference to the process instance on which this comment was madejava.util.Date
getRemovalTime()
The time the historic comment will be removed.java.lang.String
getRootProcessInstanceId()
reference to the root process instance id of the process instance on which this comment was madejava.lang.String
getTaskId()
reference to the task on which this comment was madejava.util.Date
getTime()
time and date when the user made the commentjava.lang.String
getUserId()
reference to the user that made the comment
-
-
-
Method Detail
-
getId
java.lang.String getId()
comment id
-
getUserId
java.lang.String getUserId()
reference to the user that made the comment
-
getTime
java.util.Date getTime()
time and date when the user made the comment
-
getTaskId
java.lang.String getTaskId()
reference to the task on which this comment was made
-
getRootProcessInstanceId
java.lang.String getRootProcessInstanceId()
reference to the root process instance id of the process instance on which this comment was made
-
getProcessInstanceId
java.lang.String getProcessInstanceId()
reference to the process instance on which this comment was made
-
getFullMessage
java.lang.String getFullMessage()
the full comment message the user had related to the task and/or process instance- See Also:
TaskService.getTaskComments(String)
-
getRemovalTime
java.util.Date getRemovalTime()
The time the historic comment will be removed.
-
-