Package com.flowable.action.api.history
Interface HistoricActionInstance
- All Known Subinterfaces:
ActionInstanceExecutionResult
,HistoricActionInstanceEntity
- All Known Implementing Classes:
ExecuteActionInstanceCmd.ActionInstanceExecutionResultWrapper
,HistoricActionInstanceEntityImpl
public interface HistoricActionInstance
An object structure representing a historic action instance.
- Author:
- Tijs Rademakers
-
Method Summary
Modifier and Type Method Description java.lang.String
getActionDefinitionId()
Reference to the action definition of this action instancejava.lang.String
getExecutedBy()
Reference to the user that executed the action instancejava.util.Date
getExecutionDate()
Execution date for the action instancejava.lang.String
getFormInstanceId()
Reference to the form instance idjava.lang.String
getFormKey()
Reference to the form keyjava.lang.String
getFormParentDeploymentId()
The parent deployment id for the form key.java.lang.String
getId()
unique identifierjava.lang.String
getName()
Reference to the name of this action instancejava.lang.Integer
getPriority()
The priority of the action instance.java.lang.String
getScopeDefinitionId()
Reference to the scope instance definition for which the action instance was createdjava.lang.String
getScopeId()
Reference to the scope instance for which the action instance was createdjava.lang.String
getScopeType()
Type of the scope instance for which the action instance was createdjava.util.Date
getStartDate()
Start date for the action instancejava.lang.String
getSubScopeId()
Reference to a sub identifier for which the action instance was createdjava.lang.String
getTenantId()
The tenant identifier of this form instance
-
Method Details
-
getId
java.lang.String getId()unique identifier -
getActionDefinitionId
java.lang.String getActionDefinitionId()Reference to the action definition of this action instance -
getName
java.lang.String getName()Reference to the name of this action instance -
getScopeId
java.lang.String getScopeId()Reference to the scope instance for which the action instance was created -
getSubScopeId
java.lang.String getSubScopeId()Reference to a sub identifier for which the action instance was created -
getScopeType
java.lang.String getScopeType()Type of the scope instance for which the action instance was created -
getScopeDefinitionId
java.lang.String getScopeDefinitionId()Reference to the scope instance definition for which the action instance was created -
getStartDate
java.util.Date getStartDate()Start date for the action instance -
getExecutionDate
java.util.Date getExecutionDate()Execution date for the action instance -
getExecutedBy
java.lang.String getExecutedBy()Reference to the user that executed the action instance -
getFormInstanceId
java.lang.String getFormInstanceId()Reference to the form instance id -
getFormKey
java.lang.String getFormKey()Reference to the form key -
getFormParentDeploymentId
java.lang.String getFormParentDeploymentId()The parent deployment id for the form key. If not set then always latest form should be used. -
getPriority
java.lang.Integer getPriority()The priority of the action instance. -
getTenantId
java.lang.String getTenantId()The tenant identifier of this form instance
-