Package com.comalatech.workflow.model
Interface Activity
- All Known Subinterfaces:
Approval
,Assignment
,Completion
,PartialApproval
,PartialRejection
,Rejection
,State
,Task
public interface Activity
The Activity represents workflow activity information
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns the internal activity idreturns the comment recorded by the user when this action was performedgetDate()
returns the date of this actionDeprecated.
-
Method Details
-
getActivityId
String getActivityId()Returns the internal activity id- Returns:
- The internal activity id
- Since:
- 1.0
-
getUserName
Deprecated.Deprecated since 6.17.0. UsegetPerformer()
instead. returns the name of the user responsible for this action- Returns:
- The name of the user responsible for this action
- Since:
- 1.0
-
getPerformer
String getPerformer()- Returns:
- The name of the user responsible for this action
- Since:
- 6.17.0
-
getDate
Date getDate()returns the date of this action- Returns:
- The date of this action
- Since:
- 1.0
-
getComment
String getComment()returns the comment recorded by the user when this action was performed- Returns:
- Any comment recorded by the user when this action was performed
- Since:
- 1.0
-