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
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description String
getActivityId()
Returns the internal activity idString
getComment()
returns the comment recorded by the user when this action was performedDate
getDate()
returns the date of this actionString
getPerformer()
String
getUserName()
Deprecated.
-
-
-
Method Detail
-
getActivityId
String getActivityId()
Returns the internal activity id- Returns:
- The internal activity id
- Since:
- 1.0
-
getUserName
@Deprecated String 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
-
-