Hi,
Is there a place in Camunda Documentation where I can find the syntax of logical expressions for Exclusive Gateways paths?
If I have A && B
I’d like to write
Non (A&&B)
for example.
Thanks
Hi,
Is there a place in Camunda Documentation where I can find the syntax of logical expressions for Exclusive Gateways paths?
If I have A && B
I’d like to write
Non (A&&B)
for example.
Thanks
If you use Expressions, you can use Java EL:
http://docs.oracle.com/javaee/6/tutorial/doc/gjddd.html
Or you can use scripts and just have your script return a True or False.
Thanks Stephen, great help