+

Search Tips   |   Advanced Search

End transitions and special events

Similar to the special start event, end transitions can emit a special end event.

This special end event is identified by the following QName:

    {http://www.ibm.com/xmlns/prod/websphere/portal/v6.1.0/portal-pcm}EndDialog

See code sample 18. In contrast to the special start event, the special end event is not expected to carry a payload.

Code sample 18:

01 <transition type="end">
 02      <source>
 03          <transition-endpoint nameref="portlet1">
 04              <event qname="e1"/>
 05          </transition-endpoint>
 06      </source>
 07      <target>
 08          <transition-endpoint nameref="portlet2">
 09              <event qname="{http://www.ibm.com/xmlns/prod/websphere/portal/v6.1.0/portal-pcm}EndDialog"/>
 10          </transition-endpoint>
 11      </target>
 12  </transition>


Parent Transitions