Package com.flowable.action.api.runtime
Interface ActionInstance
-
- All Known Subinterfaces:
ActionInstanceEntity
- All Known Implementing Classes:
ActionInstanceEntityImpl
public interface ActionInstanceAn object structure representing an action instance.- Author:
- Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetActionDefinitionId()Reference to the action definition of this action instanceStringgetFormInstanceId()Reference to the form instance idStringgetFormKey()Reference to the form keyStringgetFormParentDeploymentId()The parent deployment id for the form key.StringgetId()unique identifierStringgetName()Reference to the name of this action instanceIntegergetPriority()The priority of the action instance.StringgetScopeDefinitionId()Reference to the scope instance definition for which the action instance was createdStringgetScopeId()Reference to the scope instance for which the action instance was createdStringgetScopeType()Type of the scope instance for which the action instance was createdDategetStartDate()Start date for the action instanceStringgetSubScopeId()Reference to a sub identifier for which the action instance was createdStringgetTenantId()The tenant identifier of this form instance
-
-
-
Method Detail
-
getId
String getId()
unique identifier
-
getActionDefinitionId
String getActionDefinitionId()
Reference to the action definition of this action instance
-
getName
String getName()
Reference to the name of this action instance
-
getScopeId
String getScopeId()
Reference to the scope instance for which the action instance was created
-
getSubScopeId
String getSubScopeId()
Reference to a sub identifier for which the action instance was created
-
getScopeType
String getScopeType()
Type of the scope instance for which the action instance was created
-
getScopeDefinitionId
String getScopeDefinitionId()
Reference to the scope instance definition for which the action instance was created
-
getStartDate
Date getStartDate()
Start date for the action instance
-
getFormInstanceId
String getFormInstanceId()
Reference to the form instance id
-
getFormKey
String getFormKey()
Reference to the form key
-
getFormParentDeploymentId
String getFormParentDeploymentId()
The parent deployment id for the form key. If not set then always latest form should be used.
-
getPriority
Integer getPriority()
The priority of the action instance.
-
getTenantId
String getTenantId()
The tenant identifier of this form instance
-
-