[jboss-cvs] jboss-seam/src/main/org/jboss/seam/web ...

Gavin King gavin.king at jboss.com
Mon Jul 16 11:15:01 EDT 2007


  User: gavin   
  Date: 07/07/16 11:15:01

  Modified:    src/main/org/jboss/seam/web  Ajax4jsfFilter.java
  Log:
  wrap seam filters around seamtest requests
  
  Revision  Changes    Path
  1.4       +6 -1      jboss-seam/src/main/org/jboss/seam/web/Ajax4jsfFilter.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Ajax4jsfFilter.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/web/Ajax4jsfFilter.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- Ajax4jsfFilter.java	25 Jun 2007 22:56:50 -0000	1.3
  +++ Ajax4jsfFilter.java	16 Jul 2007 15:15:01 -0000	1.4
  @@ -14,20 +14,25 @@
   import org.jboss.seam.annotations.Install;
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.annotations.Scope;
  +import org.jboss.seam.annotations.Startup;
   import org.jboss.seam.annotations.intercept.BypassInterceptors;
   import org.jboss.seam.annotations.web.Filter;
   
   /**
    * A Seam filter component wrapper for the Ajax4JSF.
  + * This class exists to allow the Ajax4JSF filter to
  + * be configured in the web: namespace. The subclass
  + * does the actual work.
    * 
    * @author Pete Muir
    * 
    */
   @Scope(APPLICATION)
   @Name("org.jboss.seam.web.ajax4jsfFilter")
  - at Install(precedence = BUILT_IN, classDependencies="org.ajax4jsf.Filter")
  + at Install(precedence = BUILT_IN, value=false)
   @BypassInterceptors
   @Filter
  + at Startup
   public class Ajax4jsfFilter extends AbstractFilter
   {
      
  
  
  



More information about the jboss-cvs-commits mailing list