Router - Go To Different Routes Based On Condition Then Back To Single Route

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

If choice is Alphabet then return: "ABCDEFGHIJKLMNOPQRSTUVWXYZ"

<root>
<choice>Alphabet</choice>
</root>

-----------------------------------------------------------------
If choice is Number then return: "1234567890"
<root>
<choice>Number</choice>
</root>

-----------------------------------------------------------------
If choice not Alphabet and not Number, return "Invalid Choice"

Finally,output like below:


---------------------------------
The Result:
${in.body}
---------------------------------

You might also like