Name | Value |
---|---|
cond | The condition that must be evaluated. The nested DML is executed only if the condition is true. |
<task>
<say>Hello</say>
<store key="status">active</store>
<if cond="${status} == 'active'">
<say>Ok, the if condition was satisfied</say>
<run>task:main</run>
</if>
</task>