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

Gavin King gavin.king at jboss.com
Mon Jun 25 12:49:39 EDT 2007


  User: gavin   
  Date: 07/06/25 12:49:39

  Modified:    src/main/org/jboss/seam/interceptors    
                        BusinessProcessInterceptor.java
                        ConversationInterceptor.java
                        ConversationalInterceptor.java
  Removed:     src/main/org/jboss/seam/interceptors    
                        ValidationInterceptor.java
  Log:
  its 2.0, so I can remove stuff I hate :)
  
  Revision  Changes    Path
  1.60      +1 -2      jboss-seam/src/main/org/jboss/seam/interceptors/BusinessProcessInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BusinessProcessInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/BusinessProcessInterceptor.java,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -b -r1.59 -r1.60
  --- BusinessProcessInterceptor.java	21 Jun 2007 05:27:28 -0000	1.59
  +++ BusinessProcessInterceptor.java	25 Jun 2007 16:49:39 -0000	1.60
  @@ -29,8 +29,7 @@
    * @author <a href="mailto:steve at hibernate.org">Steve Ebersole</a>
    * @author Gavin King
    */
  - at Interceptor(stateless=true,
  -             around={ValidationInterceptor.class, BijectionInterceptor.class})
  + at Interceptor(stateless=true, around=BijectionInterceptor.class)
   public class BusinessProcessInterceptor extends AbstractInterceptor
   {
      private static final long serialVersionUID = 758197867958840918L;
  
  
  
  1.69      +3 -2      jboss-seam/src/main/org/jboss/seam/interceptors/ConversationInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConversationInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/ConversationInterceptor.java,v
  retrieving revision 1.68
  retrieving revision 1.69
  diff -u -b -r1.68 -r1.69
  --- ConversationInterceptor.java	21 Jun 2007 05:27:28 -0000	1.68
  +++ ConversationInterceptor.java	25 Jun 2007 16:49:39 -0000	1.69
  @@ -1,4 +1,4 @@
  -//$Id: ConversationInterceptor.java,v 1.68 2007/06/21 05:27:28 gavin Exp $
  +//$Id: ConversationInterceptor.java,v 1.69 2007/06/25 16:49:39 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import java.lang.reflect.Method;
  @@ -27,7 +27,7 @@
    * @author Gavin King
    */
   @Interceptor(stateless=true,
  -             around={ValidationInterceptor.class, BijectionInterceptor.class},
  +             around=BijectionInterceptor.class,
                within=BusinessProcessInterceptor.class)
   public class ConversationInterceptor extends AbstractInterceptor
   {
  @@ -131,6 +131,7 @@
            );
      }
   
  +   @SuppressWarnings("deprecation")
      private void beginConversationIfNecessary(Method method, Object result)
      {
         
  
  
  
  1.22      +2 -2      jboss-seam/src/main/org/jboss/seam/interceptors/ConversationalInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConversationalInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/ConversationalInterceptor.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -b -r1.21 -r1.22
  --- ConversationalInterceptor.java	21 Jun 2007 05:27:28 -0000	1.21
  +++ ConversationalInterceptor.java	25 Jun 2007 16:49:39 -0000	1.22
  @@ -1,4 +1,4 @@
  -//$Id: ConversationalInterceptor.java,v 1.21 2007/06/21 05:27:28 gavin Exp $
  +//$Id: ConversationalInterceptor.java,v 1.22 2007/06/25 16:49:39 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import java.lang.reflect.Method;
  @@ -24,7 +24,7 @@
    * @author Gavin King
    */
   @Interceptor(stateless=true,
  -             around={ValidationInterceptor.class, BijectionInterceptor.class, BusinessProcessInterceptor.class})
  +             around={BijectionInterceptor.class, BusinessProcessInterceptor.class})
   public class ConversationalInterceptor extends AbstractInterceptor
   {
      private static final long serialVersionUID = 1127583515811479385L;
  
  
  



More information about the jboss-cvs-commits mailing list