getTransitionDefinition

Back to index

Summary

Finds a transition definition by its name.
projectName
Stringrequired
The name for the project that must be unique among all projects.
workflowDefinitionName
Stringrequired
The name of the workflow definition.
stateDefinitionName
Stringrequired
The name used for the state definition.
transitionDefinitionName
Stringrequired
The name used for the transition.

Usage

Perl

$cmdr->getTransitionDefinition( "test-projectName", # projectName "test-workflowDefinitionName", # workflowDefinitionName "test-stateDefinitionName", # stateDefinitionName "test-transitionDefinitionName" # transitionDefinitionName );

ectool

ectool getTransitionDefinition \ "test-projectName" `# projectName` \ "test-workflowDefinitionName" `# workflowDefinitionName` \ "test-stateDefinitionName" `# stateDefinitionName` \ "test-transitionDefinitionName" `# transitionDefinitionName`

Examples

Perl

$cmdr->getTransitionDefinition("Default", "BTD", "build", "build2test");

ectool

ectool getTransitionDefinition "Default" "BTD" "build" "build2test"