There are two approaches.

First, if you use Page Flows, then you can make decision node where you decide 
what is next.

.....
  | <page name="yourPage" view-id="/qqq/eee.xhtml">
  |     <redirect/>
  |     <transition name="aaaa" to="check">
  |             <action expression="#{yourController.doSomething}"/>
  |     </transition>
  | </page>
  | <decision name="check" expression="#{yourController.conditionOfEnd}">
  |     <transition name="true" to="end">
  |             <action expression="#{yourController.done}"/>
  |     </transition>
  |     <transition name="false" to="yourPage"/>
  | </decision>
  | .....
Second, you can end your conversation explicitly from the code.

Conversation.instance().end();


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3977924#3977924

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3977924
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to