//allow multiple redirects via view-configs.
//in addition some component libs use a different order (which isn't spec. conform),
//but it might be useful to use the ViewConfigAwareNavigationHandler
else if (context.getRenderResponse() /*see EXTCDI-92*/ || context.getViewRoot() == null)
{
new ViewConfigAwareNavigationHandler(this.wrapped, true).handleNavigation(context, fromAction, outcome);
}
else
{
//don't refactor it - currently we need the lazy wrapping due to special jsf2 constellations
getWrappedNavigationHandler().handleNavigation(context, fromAction, outcome);