Interface WorkflowAction
-
- All Superinterfaces:
WorkflowEntity
- All Known Implementing Classes:
WorkflowActionInstance,WorkflowActionTemplate
public interface WorkflowAction extends WorkflowEntity
Represents a Workflow's Action - Template Action or Action
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowActionTypegetActionType()java.util.Collection<WorkflowDecision>getDecisions()java.util.Collection<WorkflowDecision>getIncomingDecisions()java.util.Collection<WorkflowLink>getIncomingLinks()AbstractWorkflowActionModelgetModel()
-
-
-
Method Detail
-
getModel
AbstractWorkflowActionModel getModel()
- Specified by:
getModelin interfaceWorkflowEntity- Returns:
- model of
WorkflowAction
-
getDecisions
java.util.Collection<WorkflowDecision> getDecisions()
- Returns:
- returns
WorkflowDecisions which belongs toWorkflowAction
-
getIncomingDecisions
java.util.Collection<WorkflowDecision> getIncomingDecisions()
- Returns:
- returns incoming
WorkflowDecisions which belongs toWorkflowAction
-
getIncomingLinks
java.util.Collection<WorkflowLink> getIncomingLinks()
- Returns:
- returns incoming
LinkModels which belongs toWorkflowAction
-
getActionType
WorkflowActionType getActionType()
- Returns:
WorkflowActionTypeofWorkflowAction
-
-