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

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


  User: gavin   
  Date: 07/06/20 13:45:55

  Modified:    src/main/org/jboss/seam/contexts  Contexts.java
  Log:
  refactored interception annotations
  
  Revision  Changes    Path
  1.55      +2 -3      jboss-seam/src/main/org/jboss/seam/contexts/Contexts.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Contexts.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/Contexts.java,v
  retrieving revision 1.54
  retrieving revision 1.55
  diff -u -b -r1.54 -r1.55
  --- Contexts.java	20 Jun 2007 15:53:32 -0000	1.54
  +++ Contexts.java	20 Jun 2007 17:45:55 -0000	1.55
  @@ -6,7 +6,6 @@
    */
   package org.jboss.seam.contexts;
   
  -import static org.jboss.seam.InterceptionType.NEVER;
   import static org.jboss.seam.annotations.Install.BUILT_IN;
   
   import java.util.Map;
  @@ -14,9 +13,9 @@
   import org.jboss.seam.Component;
   import org.jboss.seam.ScopeType;
   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.intercept.BypassInterceptors;
   import org.jboss.seam.bpm.BusinessProcess;
   import org.jboss.seam.core.Events;
   import org.jboss.seam.core.Init;
  @@ -34,7 +33,7 @@
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
    */
   @Name("org.jboss.seam.contexts.contexts")
  - at Intercept(NEVER)
  + at BypassInterceptors
   @Install(precedence=BUILT_IN)
   @Scope(ScopeType.APPLICATION)
   public class Contexts 
  
  
  



More information about the jboss-cvs-commits mailing list