org.activiti.engine.history
接口 HistoricActivityInstance

所有已知实现类:
HistoricActivityInstanceEntity

public interface HistoricActivityInstance

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

作者:
Christian Stettler

方法摘要
 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
 String getCalledProcessInstanceId()
          The called process instance in case of call 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
 String getTaskId()
          The corresponding task in case of task activity
 

方法详细信息

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



Copyright © 2013 Alfresco. All rights reserved.