org.activiti.engine.history
Interface HistoricActivityInstance


public interface HistoricActivityInstance

Represents one execution of an activity and it's stored permanent for statistics, audit and other business intelligence purposes.

Author:
Christian Stettler

Method Summary
 String getActivityId()
          The unique identifier of the activity in the process
 String getActivityName()
          The display name for the activity
 String getActivityType()
          The XML tag of the activity as in the process file
 String getAssignee()
          Assignee in case of user task activity
 Long getDurationInMillis()
          Difference between getEndTime() and getStartTime().
 Date getEndTime()
          Time when the activity instance ended
 String getExecutionId()
          Execution reference
 String getId()
          The unique identifier of this historic activity instance.
 String getProcessDefinitionId()
          Process definition reference
 String getProcessInstanceId()
          Process instance reference
 Date getStartTime()
          Time when the activity instance started
 

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


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 between getEndTime() and getStartTime().



Copyright © 2012 Alfresco. All Rights Reserved.