Package com.flowable.action.api.runtime
Interface ActionInstance
- All Known Subinterfaces:
ActionInstanceEntity
- All Known Implementing Classes:
ActionInstanceEntityImpl
public interface ActionInstance
An object structure representing an action instance.
- Author:
- Tijs Rademakers
-
Method Summary
Modifier and TypeMethodDescriptionReference to the action definition of this action instanceReference to the form instance idReference to the form keyThe parent deployment id for the form key.getIcon()
The icon for the action instancegetId()
unique identifiergetName()
Reference to the name of this action instanceThe priority of the action instance.Reference to the scope instance definition for which the action instance was createdReference to the scope instance for which the action instance was createdType of the scope instance for which the action instance was createdStart date for the action instanceReference to a sub identifier for which the action instance was createdThe tenant identifier of this form instance
-
Method Details
-
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 -
getIcon
String getIcon()The icon for the action instance
-