deleteTransitionDefinition

Back to index

Summary

Deletes a transition definition.
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->deleteTransitionDefinition( "test-projectName", # projectName "test-workflowDefinitionName", # workflowDefinitionName "test-stateDefinitionName", # stateDefinitionName "test-transitionDefinitionName" # transitionDefinitionName );

ectool

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

Examples

Perl

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

ectool

ectool deleteTransitionDefinition "Default" "BTD" "build" "build2test"