com.polarion.alm.tracker.workflow.config.IWorkflowConfig
METHODS
| Modifiers and Type | Name | Description |
|---|---|---|
| String | getPrototype() | Returns the prototype for which this workflow configuration is targeted. |
| String | getInitialStatus() | Returns the initial status used for workflow. Returns an empty string if the initial status is not defined. |
| void | setInitialStatus(String) | |
| String | getInitialActionId() | Returns id of the initial action used for workflow, or null if initial action is not defined. |
| void | setInitialActionId(String) | |
| Set | getTransitions() | Returns the transitions defined for this configuration. |
| IAction | getAction(String) | Returns the action with given name. |
| IAction | getTransitionAction(String,String) | Returns the transition action. |
| Collection | getActions() | |
| Map | getActionsMap() | |
| void | verify(IContributionsManager) | Verifies the consistency of the workflow and also checks that all referenced contributions do actually exist. |
| ITransition | createTransition(String,String,String) | Creates new transition instance. The resulting instance is NOT inserted into this configuration. |
| IAction | createAction(String,String) | Creates new action instance. The resulting instance is NOT inserted into this configuration. |
| IOperation | createOperation(String,Map |
Creates new operation instance, which can be insterted into {@link IAction} . |
Back to Index