[jboss-cvs] jboss-seam/src/remoting/org/jboss/seam/remoting ...

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


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

  Modified:    src/remoting/org/jboss/seam/remoting  Remoting.java
  Log:
  refactored interception annotations
  
  Revision  Changes    Path
  1.4       +2 -3      jboss-seam/src/remoting/org/jboss/seam/remoting/Remoting.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Remoting.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/remoting/org/jboss/seam/remoting/Remoting.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- Remoting.java	20 Jun 2007 08:23:19 -0000	1.3
  +++ Remoting.java	20 Jun 2007 17:47:20 -0000	1.4
  @@ -1,6 +1,5 @@
   package org.jboss.seam.remoting;
   
  -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 javax.servlet.http.HttpServletResponse;
   
   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.contexts.ServletLifecycle;
   import org.jboss.seam.log.LogProvider;
   import org.jboss.seam.log.Logging;
  @@ -29,7 +28,7 @@
   @Scope(APPLICATION)
   @Name("org.jboss.seam.remoting.remoting")
   @Install(precedence = BUILT_IN)
  - at Intercept(NEVER)
  + at BypassInterceptors
   public class Remoting extends AbstractResource
   {   
      public static final int DEFAULT_POLL_TIMEOUT = 10; // 10 seconds
  
  
  



More information about the jboss-cvs-commits mailing list