[jboss-cvs] jboss-seam/src/test/integration/resources/WEB-INF ...

Peter Muir peter at bleepbleep.org.uk
Mon Oct 8 14:15:48 EDT 2007


  User: pmuir   
  Date: 07/10/08 14:15:48

  Added:       src/test/integration/resources/WEB-INF   components.xml
                        pages.xml
  Log:
  JBSEAM-2028
  
  Revision  Changes    Path
  1.1      date: 2007/10/08 18:15:48;  author: pmuir;  state: Exp;jboss-seam/src/test/integration/resources/WEB-INF/components.xml
  
  Index: components.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <components xmlns="http://jboss.com/products/seam/components"
  	xmlns:core="http://jboss.com/products/seam/core"
  	xmlns:security="http://jboss.com/products/seam/security"
  	xmlns:persistence="http://jboss.com/products/seam/persistence"
  	xmlns:web="http://jboss.com/products/seam/web"
  	xmlns:framework="http://jboss.com/products/seam/framework"
  	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  	xsi:schemaLocation="http://jboss.com/products/seam/core http://jboss.com/products/seam/core-2.0.xsd 
                   http://jboss.com/products/seam/security http://jboss.com/products/seam/security-2.0.xsd
                   http://jboss.com/products/seam/persistence http://jboss.com/products/seam/persistence-2.0.xsd
                   http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.0.xsd 
                   http://jboss.com/products/seam/web http://jboss.com/products/seam/web-2.0.xsd 
                   http://jboss.com/products/seam/framework http://jboss.com/products/seam/framework-2.0.xsd">
  
  	<core:init debug="false" jndi-pattern="@jndiPattern@" />
  
  	<core:manager concurrent-request-timeout="500"
  		conversation-timeout="120000" 
  		conversation-id-parameter="cid"/>
  
  	<persistence:managed-persistence-context name="entityManager"
  		auto-create="true"
  		persistence-unit-jndi-name="java:/integrationEntityManagerFactory" />
      
  </components>
  
  
  
  1.1      date: 2007/10/08 18:15:48;  author: pmuir;  state: Exp;jboss-seam/src/test/integration/resources/WEB-INF/pages.xml
  
  Index: pages.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <pages xmlns="http://jboss.com/products/seam/pages"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://jboss.com/products/seam/pages http://jboss.com/products/seam/pages-2.0.xsd"
  
         no-conversation-view-id="/home.xhtml"
         login-view-id="/login.xhtml">
  
      <exception class="org.jboss.seam.framework.EntityNotFoundException">
          <redirect view-id="/error.xhtml">
              <message>Not found</message>
          </redirect>
      </exception>
      
      <exception class="javax.persistence.EntityNotFoundException">
          <redirect view-id="/error.xhtml">
              <message>Not found</message>
          </redirect>
      </exception>
      
      <exception class="javax.persistence.OptimisticLockException">
          <end-conversation/>
          <redirect view-id="/error.xhtml">
              <message>Another user changed the same data, please try again</message>
          </redirect>
      </exception>
      
      <exception class="org.jboss.seam.security.AuthorizationException">
          <redirect>
              <message>You don't have permission to do this</message>
          </redirect>
      </exception>
      
      <exception class="org.jboss.seam.security.NotLoggedInException">
          <redirect view-id="/login.xhtml">
              <message>Please log in first</message>
          </redirect>
      </exception>
       
      <exception>
          <redirect view-id="/error.xhtml">
              <message>Unexpected error, please try again</message>
          </redirect>
      </exception>
      
  </pages>
  
  
  



More information about the jboss-cvs-commits mailing list