cancel
Showing results for 
Search instead for 
Did you mean: 

Condition Expression

tomi87
Champ in-the-making
Champ in-the-making
I'm new and a little bit confussed about conditionExpressions.

<conditionExpression xsi:type="tFormalExpression"><![CDATA[${result >= 1}]]></conditionExpression>

<conditionExpression xsi:type="tFormalExpression"><![CDATA[${class.result >= 1}]]></conditionExpression>

<conditionExpression xsi:type="tFormalExpression">${result >= 1}</conditionExpression>

<conditionExpression xsi:type="tFormalExpression">${class.result >= 1}</conditionExpression>

Is everything right ? What is the difference ?
1 REPLY 1

frederikherema1
Star Contributor
Star Contributor
The CDATA-part can be added to any xml-element's body, this allows you to e.g. use "&" instead of "&amp;", to specify an and-condition.
The "class.result > 1" checks the result-member of a POJO-variable, while "result > 1" checks a numeric variable value with name "result"…