[jboss-cvs] jboss-seam/examples/seamspace/resources/WEB-INF ...

Shane Bryzak Shane_Bryzak at symantec.com
Wed Dec 13 23:12:21 EST 2006


  User: sbryzak2
  Date: 06/12/13 23:12:21

  Modified:    examples/seamspace/resources/WEB-INF   components.xml
                        web.xml
  Log:
  fixed compiler errors in security example
  
  Revision  Changes    Path
  1.7       +12 -8     jboss-seam/examples/seamspace/resources/WEB-INF/components.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: components.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seamspace/resources/WEB-INF/components.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- components.xml	10 Nov 2006 19:07:57 -0000	1.6
  +++ components.xml	14 Dec 2006 04:12:21 -0000	1.7
  @@ -21,7 +21,7 @@
         <property name="providers">#{authenticatorAction}</property>
       </component>
       
  -    <component name="persistentAclProvider" class="org.jboss.seam.security.acl.PersistentAclProvider">
  +    <!--component name="persistentAclProvider" class="org.jboss.seam.security.acl.PersistentAclProvider">
         <property name="aclQuery">
           select p.mask, p.recipient, p.recipientType from AclPermission p
           where p.identity.objectIdentity = :identity
  @@ -29,10 +29,14 @@
         
         <property name="persistenceContextManager">#{entityManager}</property>      
         
  +    </component-->
  +
  +    <component name="org.jboss.seam.securityManager">
  +    
       </component>
   
  -    <!--component class="org.jboss.seam.security.SeamSecurityManager">
  +    <component name="org.jboss.seam.security.securityConfiguration">
       
  -    </component-->
  +    </component>
           
   </components>
  \ No newline at end of file
  
  
  
  1.3       +10 -0     jboss-seam/examples/seamspace/resources/WEB-INF/web.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: web.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/seamspace/resources/WEB-INF/web.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- web.xml	5 Dec 2006 23:19:44 -0000	1.2
  +++ web.xml	14 Dec 2006 04:12:21 -0000	1.3
  @@ -24,6 +24,16 @@
           <url-pattern>*.seam</url-pattern>
       </filter-mapping>
   
  +    <filter>
  +      <filter-name>Seam Security Filter</filter-name>
  +      <filter-class>org.jboss.seam.security.filter.SeamSecurityFilter</filter-class>
  +    </filter>
  +    
  +    <filter-mapping>
  +      <filter-name>Seam Security Filter</filter-name>
  +      <url-pattern>*.seam</url-pattern>
  +    </filter-mapping>
  +
       <!-- MyFaces -->
   
       <listener>
  
  
  



More information about the jboss-cvs-commits mailing list