org.activiti.engine.history
接口 HistoricIdentityLink

所有已知实现类:
HistoricIdentityLinkEntity

public interface HistoricIdentityLink

Historic counterpart of IdentityLink that represents the current state if any runtime link. Will be preserved when the runtime process instance or task is finished.

作者:
Frederik Heremans

方法摘要
 String getGroupId()
          If the identity link involves a group, then this will be a non-null id of a group.
 String getProcessInstanceId()
          The id of the process instance associated with this identity link.
 String getTaskId()
          The id of the task associated with this identity link.
 String getType()
          Returns the type of link.
 String getUserId()
          If the identity link involves a user, then this will be a non-null id of a user.
 

方法详细信息

getType

String getType()
Returns the type of link. See IdentityLinkType for the native supported types by Activiti.


getUserId

String getUserId()
If the identity link involves a user, then this will be a non-null id of a user. That userId can be used to query for user information through the UserQuery API.


getGroupId

String getGroupId()
If the identity link involves a group, then this will be a non-null id of a group. That groupId can be used to query for user information through the GroupQuery API.


getTaskId

String getTaskId()
The id of the task associated with this identity link.


getProcessInstanceId

String getProcessInstanceId()
The id of the process instance associated with this identity link.



Copyright © 2013 Alfresco. All rights reserved.