Hi there,
can someone tell me if there is a possibility to declare more than one
<from-outcome> definition in faces-config.xml?
This is what I have for now:
<navigation-case>
<from-action>#{LoginBackingBean.checkLogin}</from-action>
<from-outcome>a</from-outcome>
<to-view-id>/project.jsp</to-view-id>
</navigation-case>
But I would like something in that way:
<navigation-case>
<from-action>#{LoginBackingBean.checkLogin}</from-action>
<from-outcome>a OR b OR c</from-outcome>
<to-view-id>/project.jsp</to-view-id>
</navigation-case>
Do I have to write a single navigation-case for each option, or is there a
better way to do so?
Thanks in advance :)
Jan