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

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/exceptions  Exceptions.java
  Log:
  refactored interception annotations
  
  Revision  Changes    Path
  1.3       +2 -3      jboss-seam/src/main/org/jboss/seam/exceptions/Exceptions.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Exceptions.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/exceptions/Exceptions.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- Exceptions.java	19 Jun 2007 20:08:12 -0000	1.2
  +++ Exceptions.java	20 Jun 2007 17:45:55 -0000	1.3
  @@ -1,6 +1,5 @@
   package org.jboss.seam.exceptions;
   
  -import static org.jboss.seam.InterceptionType.NEVER;
   import static org.jboss.seam.annotations.Install.BUILT_IN;
   
   import java.io.InputStream;
  @@ -16,9 +15,9 @@
   import org.jboss.seam.ScopeType;
   import org.jboss.seam.annotations.Create;
   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.contexts.Contexts;
   import org.jboss.seam.core.Events;
   import org.jboss.seam.core.Init;
  @@ -37,7 +36,7 @@
    * @author Gavin King
    */
   @Scope(ScopeType.APPLICATION)
  - at Intercept(NEVER)
  + at BypassInterceptors
   @Install(precedence=BUILT_IN, classDependencies="javax.faces.context.FacesContext")
   @Name("org.jboss.seam.exceptions.exceptions")
   public class Exceptions
  
  
  



More information about the jboss-cvs-commits mailing list