techsjs2012
techsjs2012

Reputation: 1737

Spring Web Flow Action-State what should controller return?

Spring Web Flow Action-State what should controller return? Look at my flow below I have a action-state that based on the call to the controller i can be going to 4 diff paths..

I dont know what changes I have to make in my controller to pass back where to go.

below is my flow:

<action-state id="checkStatus">
        <evaluate expression="flowControllerActions.checkStatus(member)" />
        <transition on="NoSSN" to="NoSSN"/>
        <transition on="MemberExists" to="endStateMemberExists" />
        <transition on="IsDeceased" to="endStateMemberDeceased" />
        <transition on="OK" to="address" />
    </action-state>

and here is my method in the controller. can someone please tell me what to do to make the tranistions work:

public String checkStatus(Member member) {
        LOGGER.debug("[" + member.toString() + "]");

        //
        // HOW DO I RETURN??
        //

    }

Upvotes: 1

Views: 836

Answers (1)

rptmat57
rptmat57

Reputation: 3787

you should be able to return String(s): "NoSSN","MemberExists","IsDeceased" and "OK" in your controller

Upvotes: 5

Related Questions