cancel
Showing results for 
Search instead for 
Did you mean: 

sending sms

wijaya88
Champ in-the-making
Champ in-the-making
hi..
i want CREATE CUSTOM ADVANCE WORKFLOW,
if task confirmed, will sending sms confirmation..
(sms gateway)

thank you..
1 REPLY 1

savic_prvoslav
Champ on-the-rise
Champ on-the-rise
If the decision was more complex than could easily be handled with an expression or JavaScript, you could have used a Java class to implement the decision logic. To do that, you would have used a handler tag to point to a Java class that implements the DecisionHandler interface:
<decision name="CapEx Decision">
<handler class="com.someco.bpm.CapExDecisionHandler" />
<transition name="transBoard" to="Board Review"></transition>
<transition name="transMgt" to="Management Review"></transition>
</decision>