jBPM documentation
by Stefan Droog
Hi all,
I need urgently the documentation of jBPM 3.2 and 4. The http://www.jboss.org/jbossjbpm/jbpm_documentation/ seems not to work due to maintenance activities.
Is there somewhere a mirror where it does work?
Thanks in advance,
Regards,
Stefan
________________________________
The information contained in this communication is confidential, intended solely for the use of the individual or entity to whom it is addressed and may be legally privileged and protected by professional secrecy. Access to this message by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, or distribution of the message, or any action or omission taken by you in reliance on it is prohibited and may be unlawful. Please immediately contact the sender if you have received this message in error. This email does not constitute any commitment from Cordys Holding BV or any of its subsidiaries except when expressly agreed in a written agreement between the intended recipient and Cordys Holding BV or its subsidiaries. Cordys is neither liable for the proper and complete transmission of the information contained in this communication nor for any delay in its receipt. Cordys does not guarantee that the integrity of this communication has been maintained nor that the communication is free of viruses, interceptions or interference. If you are not the intended recipient of this communication please return the communication to the sender and delete and destroy all copies.
15 years, 8 months
[Design of JBoss jBPM] - Re: variable and sub-process syntax
by tom.baeyens@jboss.com
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#4226326
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4226326
15 years, 8 months
[Design of JBoss jBPM] - variable and sub-process syntax
by tom.baeyens@jboss.com
starting on sub-process i realized that i better think out variable declarations as a whole. i know of 4 places where we want to declare variables:
* process variables declarations
* activity variable declarations (state, task, super-state,...)
* task out variable declarations
* sub-process out variables
<process name="...">
| <variable name="processVariableName" type="..." init="#{expression}">
| <init><string value="fixed string"/></init>
| <variable>
|
|
| <activity name="...">
| <variable name="activityScopedVariableName" type="..." init="#{expression}">
| <init><string value="fixed string"/></init>
| <variable>
|
|
| <sub-process name='...'>
| <in-swimlane name="superProcessSwimlaneName" sub-name="subProcessSwimlaneName" />
| <variable name="subProcessVariableName" init="#{expression}">
| <init><string value="fixed string"/></init>
| <variable>
| <out-variable name="processVariableName" init="#{expressionResolvedInSubProcessContext}">
| <transition>
| <outcome activity="subprocessactivity" />
| <outcome variable="subprocessvariable"><string value="..." /></outcome>
|
|
| <task name="...">
| <variable name="taskVariableName" type="..." init="#{expression}">
| <init><string value="fixed string"/></init>
| <variable>
| <out-variable name="processVariableName" init="#{expressionResolvedInTaskContext}">
| <transition name="...">
|
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4226312#4226312
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4226312
15 years, 8 months