Default
default execution path to take when none of the cases in the
switch tag match the property from the switch tag.
Children Tags
Usage Examples
Example #1
<switch property="${test}">
<case value="1">
<log>Switch case #1</log>
</case>
<case value="2">
<log>Switch case #2</log>
</case>
<default>
<log>Default case called</log>
</default>
</switch>