Package org.activiti.engine.history
Interface HistoricActivityInstance
-
- All Superinterfaces:
HistoricData
- All Known Subinterfaces:
HistoricActivityInstanceEntity
- All Known Implementing Classes:
HistoricActivityInstanceEntityImpl
@Internal public interface HistoricActivityInstance extends HistoricData
Represents one execution of an activity and it's stored permanent for statistics, audit and other business intelligence purposes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetActivityId()The unique identifier of the activity in the processStringgetActivityName()The display name for the activityStringgetActivityType()The XML tag of the activity as in the process fileStringgetAssignee()Assignee in case of user task activityStringgetCalledProcessInstanceId()The called process instance in case of call activityStringgetDeleteReason()Returns the delete reason for this activity, if any was set (if completed normally, no delete reason is set)LonggetDurationInMillis()Difference betweengetEndTime()andgetStartTime().DategetEndTime()Time when the activity instance endedStringgetExecutionId()Execution referenceStringgetId()The unique identifier of this historic activity instance.StringgetProcessDefinitionId()Process definition referenceStringgetProcessInstanceId()Process instance referenceDategetStartTime()Time when the activity instance startedStringgetTaskId()The corresponding task in case of task activityStringgetTenantId()Returns the tenant identifier for the historic activity-
Methods inherited from interface org.activiti.engine.history.HistoricData
getTime
-
-
-
-
Method Detail
-
getId
String getId()
The unique identifier of this historic activity instance.
-
getActivityId
String getActivityId()
The unique identifier of the activity in the process
-
getActivityName
String getActivityName()
The display name for the activity
-
getActivityType
String getActivityType()
The XML tag of the activity as in the process file
-
getProcessDefinitionId
String getProcessDefinitionId()
Process definition reference
-
getProcessInstanceId
String getProcessInstanceId()
Process instance reference
-
getExecutionId
String getExecutionId()
Execution reference
-
getTaskId
String getTaskId()
The corresponding task in case of task activity
-
getCalledProcessInstanceId
String getCalledProcessInstanceId()
The called process instance in case of call activity
-
getAssignee
String getAssignee()
Assignee in case of user task activity
-
getStartTime
Date getStartTime()
Time when the activity instance started
-
getEndTime
Date getEndTime()
Time when the activity instance ended
-
getDurationInMillis
Long getDurationInMillis()
Difference betweengetEndTime()andgetStartTime().
-
getDeleteReason
String getDeleteReason()
Returns the delete reason for this activity, if any was set (if completed normally, no delete reason is set)
-
getTenantId
String getTenantId()
Returns the tenant identifier for the historic activity
-
-