Getting started Community Training Tutorials Documentation APIs, AI & Tools
<flow name="greedy">
<choice>
<when expression="#[flowVars['currency'] == 'USD']">
<scripting:component>
<scripting:script file="greedy.groovy">
<property key="currency" value="USD"/>
</scripting:script>
</scripting:component>
</when>
<when expression="#[flowVars['currency'] == 'GBP']">
<scripting:component>
<scripting:script file="greedy.py">
<property key="currency" value="GBP"/>
</scripting:script>
</scripting:component>
</when>
</choice>
</flow>



