com.atlassian.jira.functest.framework.admin.WorkflowTransition |
![]() |
Represents functionality of the workflow transition configuration page.
Nested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
WorkflowTransition.Tabs |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Add workflow condition with given workflowConditionKey to the transition. | |||||||||||
Add workflow condition with given workflowConditionKey to the transition. | |||||||||||
Add workflow function with given workflowFunctionKey to the transition. | |||||||||||
Add workflow function with given workflowFunctionKey to the transition. | |||||||||||
Add workflow validator with given workflowValidatorKey to the transition. | |||||||||||
Add workflow validator with given workflowValidatorKey to the transition. | |||||||||||
Check if condition with given workflowConditionKey can be added to this transition, i.e.
| |||||||||||
Check if function with given workflowFunctionKey can be added to this transition, i.e.
| |||||||||||
Check if validator with given workflowValidatorKey can be added to this transition, i.e.
| |||||||||||
Go to the 'Add Workflow Condition' form where user can choose between available workflow conditions to add to
the transition.
| |||||||||||
Go to the 'Add Workflow Function' form where user can choose between available workflow functions to add to the transition. | |||||||||||
Go to the 'Add Workflow Validator' form where user can choose among available workflow validators to add to
the transition.
| |||||||||||
Check if given tab is currently open
| |||||||||||
Open given tab.
|
Add workflow condition with given workflowConditionKey to the transition.
For non-configurable conditions only, otherwise use addWorkflowCondition(String, java.util.Map)
.
workflowConditionKey | full plugin key of the workflow condition to add |
---|
Add workflow condition with given workflowConditionKey to the transition.
Use configFormParams to provide parameters for the custom condition configuration form.
workflowConditionKey | full plugin key of the workflow condition to add |
---|---|
configFormParams | form parameters to fill the configure condition screen |
Add workflow function with given workflowFunctionKey to the transition.
This is to use in case where the function has custom configuration screen. Pass the custom parameter values
(by HTML filed name) in the configFormParams map. Otherwise use addWorkflowFunction(String)
instead, or pass empty map.
workflowFunctionKey | full plugin key of the workflow function to add |
---|---|
configFormParams | form parameters to fill the configure function screen |
Add workflow function with given workflowFunctionKey to the transition.
This is to use for workflow functions that do not define any configuration screen, i.e. after submitting the
function type there is no function-specific configuration screen. Otherwise use
addWorkflowFunction(String, java.util.Map)
.
workflowFunctionKey | full plugin key of the workflow function to add |
---|
Add workflow validator with given workflowValidatorKey to the transition.
Use configFormParams to provide parameters for the custom validator configuration form.
workflowValidatorKey | full plugin key of the workflow validator to add |
---|---|
configFormParams | form parameters to fill the configure validator screen |
Add workflow validator with given workflowValidatorKey to the transition.
For non-configurable validators only, otherwise use addWorkflowValidator(String, java.util.Map)
.
workflowValidatorKey | full plugin key of the workflow validator to add |
---|
Check if condition with given workflowConditionKey can be added to this transition, i.e. is present on the 'Add Workflow Condition' screen
workflowConditionKey | key of the condition to check |
---|
true
, if condition can be added to this transition
Check if function with given workflowFunctionKey can be added to this transition, i.e. is present on the 'Add Workflow Function' screen
workflowFunctionKey | key of the function to check |
---|
true
, if condition can be added to this transition
Check if validator with given workflowValidatorKey can be added to this transition, i.e. is present on the 'Add Workflow Validator' screen
workflowValidatorKey | key of the validator to check |
---|
true
, if condition can be added to this transition
Go to the 'Add Workflow Condition' form where user can choose between available workflow conditions to add to the transition.
Go to the 'Add Workflow Function' form where user can choose between available workflow functions to add to the transition.
Go to the 'Add Workflow Validator' form where user can choose among available workflow validators to add to the transition.
Check if given tab is currently open
tab | tab to check |
---|
true
, if given tab is currently open
Open given tab.
tab | tab to open |
---|