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 java.lang.String
getActivityId()
Returns the internal activity idjava.lang.String
getComment()
returns the comment recorded by the user when this action was performedjava.util.Date
getDate()
returns the date of this actionjava.lang.String
getPerformer()
java.lang.String
getUserName()
Deprecated.
-
-
-
Method Detail
-
getActivityId
java.lang.String getActivityId()
Returns the internal activity id- Returns:
- The internal activity id
- Since:
- 1.0
-
getUserName
@Deprecated java.lang.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
java.lang.String getPerformer()
- Returns:
- The name of the user responsible for this action
- Since:
- 6.17.0
-
getDate
java.util.Date getDate()
returns the date of this action- Returns:
- The date of this action
- Since:
- 1.0
-
getComment
java.lang.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
-
-