[jboss-cvs] jboss-seam/src/debug/org/jboss/seam/debug/hot ...

Gavin King gavin.king at jboss.com
Wed Jun 20 13:47:18 EDT 2007


  User: gavin   
  Date: 07/06/20 13:47:18

  Modified:    src/debug/org/jboss/seam/debug/hot  HotDeployFilter.java
  Log:
  refactored interception annotations
  
  Revision  Changes    Path
  1.8       +2 -3      jboss-seam/src/debug/org/jboss/seam/debug/hot/HotDeployFilter.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HotDeployFilter.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/debug/org/jboss/seam/debug/hot/HotDeployFilter.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- HotDeployFilter.java	19 Jun 2007 20:11:05 -0000	1.7
  +++ HotDeployFilter.java	20 Jun 2007 17:47:18 -0000	1.8
  @@ -1,6 +1,5 @@
   package org.jboss.seam.debug.hot;
   
  -import static org.jboss.seam.InterceptionType.NEVER;
   import static org.jboss.seam.ScopeType.APPLICATION;
   import static org.jboss.seam.annotations.Install.BUILT_IN;
   
  @@ -16,10 +15,10 @@
   import org.jboss.seam.Seam;
   import org.jboss.seam.annotations.Filter;
   import org.jboss.seam.annotations.Install;
  -import org.jboss.seam.annotations.Intercept;
   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.core.Init;
   import org.jboss.seam.exceptions.Exceptions;
   import org.jboss.seam.init.Initialization;
  @@ -31,7 +30,7 @@
   @Name("org.jboss.seam.debug.hotDeployFilter")
   @Startup
   @Install(debug=true, precedence=BUILT_IN)
  - at Intercept(NEVER)
  + at BypassInterceptors
   @Scope(APPLICATION)
   @Filter
   public class HotDeployFilter extends AbstractFilter
  
  
  



More information about the jboss-cvs-commits mailing list