Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version='1.0' encoding='UTF-8'?>
  2.  
  3. <!-- =========== FULL CONFIGURATION FILE ================================== -->
  4.  
  5. <faces-config version="2.0"
  6.    xmlns="http://java.sun.com/xml/ns/javaee"
  7.    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  8.    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd">
  9.    
  10.     <navigation-rule>
  11.         <from-view-id>/index.xhtml</from-view-id>
  12.         <navigation-case>
  13.             <from-outcome>exito</from-outcome>
  14.             <to-view-id>/saludo.xhtml</to-view-id>
  15.         </navigation-case>    
  16.     </navigation-rule>
  17.    
  18.     <managed-bean>
  19.         <managed-bean-name>usuario</managed-bean-name>>
  20.         <managed-bean-class>com.Usuario</managed-bean-class>
  21.         <managed-bean-scope>session</managed-bean-scope>
  22.     </managed-bean>    
  23.  
  24. </faces-config>