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.StringgetActionDefinitionId()Reference to the action definition of this action instancejava.lang.StringgetExecutedBy()Reference to the user that executed the action instancejava.util.DategetExecutionDate()Execution date for the action instancejava.lang.StringgetFormInstanceId()Reference to the form instance idjava.lang.StringgetFormKey()Reference to the form keyjava.lang.StringgetFormParentDeploymentId()The parent deployment id for the form key.java.lang.StringgetId()unique identifierjava.lang.StringgetName()Reference to the name of this action instancejava.lang.StringgetScopeDefinitionId()Reference to the scope instance definition for which the action instance was createdjava.lang.StringgetScopeId()Reference to the scope instance for which the action instance was createdjava.lang.StringgetScopeType()Type of the scope instance for which the action instance was createdjava.util.DategetStartDate()Start date for the action instancejava.lang.StringgetSubScopeId()Reference to a sub identifier for which the action instance was createdjava.lang.StringgetTenantId()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. -
getTenantId
java.lang.String getTenantId()The tenant identifier of this form instance
-