sub-process with swimlane mapping
<sub-process name='...'>
| <swimlane-mapping swimlane="superProcessSwimlaneName"
sub-swimlane="subProcessSwimlaneName" />
|
sub process variable initialization based on expression
<sub-process name='...'>
| <variable name="subProcessVariableName"
init="#{expression}" />
|
sub process variable fixed value initialization
<sub-process name='...'>
| <variable name="subProcessVariableName">
| <integer value="5" />
| </variable>
|
extract information from sub-process when it finishes
<sub-process name='...'>
| <out-variable name="processVariableName"
init="#{expressionResolvedInSubProcessContext}">
|
specify outgoing transition based on sub process variable value
<sub-process name='...' outcome="#{subProcessExpression}">
| <transition name="...">
| <outcome-value><string value="..."
/></outcome-value>
| </transition>
|
specify outgoing transition based on sub process end activity
<sub-process name='...'>
| <transition name="...">
| <outcome activity="subProcessEndActivityName" />
| </transition>
|
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4226326#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...