Package org.jboss.seam.faces

Examples of org.jboss.seam.faces.FacesManager


   public void handle(Exception e) throws Exception
   {
      log.debug("redirecting to debug page", e); //no need to be noisy, ExceptionFilter already logs it
      org.jboss.seam.faces.Redirect redirect = org.jboss.seam.faces.Redirect.instance();
      redirect.setViewId("/debug.xhtml");
      FacesManager manager = FacesManager.instance();
      manager.beforeRedirect("/debug.xhtml");
      redirect.setParameter( manager.getConversationIdParameter(), manager.getCurrentConversationId() );
     
      try
      {
         redirect.execute();
      }
View Full Code Here

TOP

Related Classes of org.jboss.seam.faces.FacesManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.