Package org.activiti.engine.task
Interface Comment
-
- All Superinterfaces:
HistoricData
- All Known Subinterfaces:
CommentEntity
- All Known Implementing Classes:
CommentEntityImpl
@Internal @Deprecated public interface Comment extends HistoricData
Deprecated.this interface and its implementations are going to be removed in future iterations Comments doesn't belong to the Process/Task RuntimeUser comments that form discussions around tasks.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getFullMessage()
Deprecated.the full comment message the user had related to the task and/or process instancejava.lang.String
getId()
Deprecated.unique identifier for this commentjava.lang.String
getProcessInstanceId()
Deprecated.reference to the process instance on which this comment was madejava.lang.String
getTaskId()
Deprecated.reference to the task on which this comment was madejava.util.Date
getTime()
Deprecated.time and date when the user made the commentjava.lang.String
getType()
Deprecated.reference to the type given to the commentjava.lang.String
getUserId()
Deprecated.reference to the user that made the comment
-
-
-
Method Detail
-
getId
java.lang.String getId()
Deprecated.unique identifier for this comment
-
getUserId
java.lang.String getUserId()
Deprecated.reference to the user that made the comment
-
getTime
java.util.Date getTime()
Deprecated.time and date when the user made the comment- Specified by:
getTime
in interfaceHistoricData
-
getTaskId
java.lang.String getTaskId()
Deprecated.reference to the task on which this comment was made
-
getProcessInstanceId
java.lang.String getProcessInstanceId()
Deprecated.reference to the process instance on which this comment was made
-
getType
java.lang.String getType()
Deprecated.reference to the type given to the comment
-
getFullMessage
java.lang.String getFullMessage()
Deprecated.the full comment message the user had related to the task and/or process instance- See Also:
TaskService.getTaskComments(String)
-
-