WorkflowTransition

Description

The WorkflowTransition type holds details about a transition in the graphical workflow. The WorkflowTransition type parameters are listed below.

Parameters

Name Type Description
id TransitionIdentifier Holds identification information for a transition.
style Transition-Style Describes the visual appearance of the transition.
point Point The coordinates that describe where the transition starts and stops.
styleClass string Provides a visual reminder of the purpose, use, or importance of a transition.
labelPosition Point The location of the transition's label.
extendedData ExtendedData Placeholder for future arguments.

Usage

The WorkflowTransition type describes the positioning and of a transition in the graphical workflow. For details on the graphical workflow, refer to Workflow.

XML

The following XML snippet shows the WorkflowTransition type in the return element of the GetWorkflows response.

<ae:transition>
   <ae:id xsi:type="ae:TransitionIdentifier">
      <ae:displayName>Delete</ae:displayName>
      <ae:id>2</ae:id>
      <ae:uuid>delete</ae:uuid>
      <ae:internalName>DELETE</ae:internalName>
   </ae:id>
   <ae:style>STYLE-STRAIGHT</ae:style>
   <ae:point>
      <ae:x>-31</ae:x>
      <ae:y>-406</ae:y>
   </ae:point>
   <ae:point>
      <ae:x>-31</ae:x>
      <ae:y>-519</ae:y>
   </ae:point>
   <ae:styleClass>NormalPath</ae:styleClass>
   <ae:labelPosition>
      <ae:x>-31</ae:x>
      <ae:y>-444</ae:y>
   </ae:labelPosition>
</ae:transition>