Flow Order mediation primitive properties

You can specify values for mediation primitive properties either by using the property fields in the IBM® Integration Designer user interface or by using an XML format. The property field names displayed in IBM Integration Designer are generally different from the property names used when building a mediation flow using XML code. In the following information, icons are used to identify each property name used in IBM Integration Designer and the corresponding XML name. (Where applicable, XML names that are required, but not shown in IBM Integration Designer, are also described.)

terminals

Specify a caret-delimited (^) list of the order terminals to be fired. For example, terminals="out1^out2" will cause terminal out1 to be fired followed by out2.

Field detail Value and notes
Required Yes
Valid values String
Note:
Default out1^out2

Sample XML code

<node name="FlowOrder1" type="FlowOrder">
  <property name="terminals" value="out1^out2^out3"/>
  <inputTerminal/>
  <outputTerminal name="out1">
    <wire targetNode="CustomMediation1"/>
  </outputTerminal>
  <outputTerminal name="out2">
    <wire targetNode="MessageElementSetter1"/>
  </outputTerminal>
  <outputTerminal name="out3">
    <wire targetNode="MessageFilter1"/>
  </outputTerminal>
</node>