I created a class that extends AbstractCasWebflowConfigurer to modify the webflow instead of modifying xml directly. I can define a new action-state with transitions but I can't seem to modify an already existing one.
For realSubmit action-state within login webflow:
<action-state id="realSubmit">
<transition on="warn" to="warn"/>
<transition on="success" to="sendTicketGrantingTicket"/>
.
.
.
</action-state>
For "success", how can I programatically change the transition from "sendTicketGrantingTicket" to "doMyCustomAction"? Would I have to define the entire action state or can I just update the single transition?
I have the org.springframework.webflow.engine.Flow Object but I don't see an appropriate method to update the transition.
Thanks.
-psv