<?xml version="1.0"?>
<faces-config xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
	 http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
    version="1.2">
	<application>
		<resource-bundle>
			<base-name>com.corejsf.messages</base-name>
			<var>msgs</var>
		</resource-bundle>
	</application>

   <navigation-rule>
      <navigation-case>
         <from-outcome>index</from-outcome>
         <to-view-id>/index.jsp</to-view-id>
      </navigation-case>
   </navigation-rule>

   <navigation-rule>
      <from-view-id>/index.jsp</from-view-id>
      <navigation-case>
         <from-outcome>washington</from-outcome>
         <to-view-id>/washington.jsp</to-view-id>
      </navigation-case>
      <navigation-case>
         <from-outcome>jefferson</from-outcome>
         <to-view-id>/jefferson.jsp</to-view-id>
      </navigation-case>
      <navigation-case>
         <from-outcome>roosevelt</from-outcome>
         <to-view-id>/roosevelt.jsp</to-view-id>
      </navigation-case>
      <navigation-case>
         <from-outcome>lincoln</from-outcome>
         <to-view-id>/lincoln.jsp</to-view-id>
      </navigation-case>
   </navigation-rule>

   <managed-bean> 
      <managed-bean-name>rushmore</managed-bean-name>
      <managed-bean-class>com.corejsf.Rushmore</managed-bean-class> 
      <managed-bean-scope>session</managed-bean-scope> 
   </managed-bean>

</faces-config>