Created
July 21, 2014 07:26
-
-
Save menski/58dee4e7dcd6285bdff9 to your computer and use it in GitHub Desktop.
Decide who wins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bpmn2:sequenceFlow id="flow3" name="Greater than 3" sourceRef="gateway" targetRef="userTaskPlayerWins"> | |
<!-- script as sequence flow condition --> | |
<bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"> | |
aNumber > 3 | |
</bpmn2:conditionExpression> | |
</bpmn2:sequenceFlow> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bpmn2:sequenceFlow id="flow4" name="Less then 4" sourceRef="gateway" targetRef="userTaskBankWins"> | |
<!-- script as sequence flow condition --> | |
<bpmn2:conditionExpression xsi:type="bpmn2:tFormalExpression" language="groovy"> | |
<![CDATA[ | |
aNumber < 4 | |
]]> | |
</bpmn2:conditionExpression> | |
</bpmn2:sequenceFlow> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment