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

Gavin King gavin.king at jboss.com
Mon Oct 2 00:17:59 EDT 2006


  User: gavin   
  Date: 06/10/02 00:17:59

  Modified:    src/main/org/jboss/seam/interceptors           
                        BijectionInterceptor.java
                        BusinessProcessInterceptor.java
                        ConversationInterceptor.java
                        ConversationalInterceptor.java
                        EventInterceptor.java ExceptionInterceptor.java
                        OutcomeInterceptor.java RemoveInterceptor.java
                        RollbackInterceptor.java
                        TransactionInterceptor.java
                        ValidationInterceptor.java
  Log:
  stateless=true
  
  Revision  Changes    Path
  1.19      +3 -1      jboss-seam/src/main/org/jboss/seam/interceptors/BijectionInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BijectionInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/BijectionInterceptor.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -b -r1.18 -r1.19
  --- BijectionInterceptor.java	28 Sep 2006 16:43:10 -0000	1.18
  +++ BijectionInterceptor.java	2 Oct 2006 04:17:59 -0000	1.19
  @@ -1,4 +1,4 @@
  -//$Id: BijectionInterceptor.java,v 1.18 2006/09/28 16:43:10 gavin Exp $
  +//$Id: BijectionInterceptor.java,v 1.19 2006/10/02 04:17:59 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import java.lang.reflect.Method;
  @@ -14,6 +14,7 @@
   import org.apache.commons.logging.LogFactory;
   import org.jboss.seam.annotations.Create;
   import org.jboss.seam.annotations.Destroy;
  +import org.jboss.seam.annotations.Interceptor;
   
   /**
    * Before invoking the component, inject all dependencies. After
  @@ -21,6 +22,7 @@
    * 
    * @author Gavin King
    */
  + at Interceptor(stateless=true)
   public class BijectionInterceptor extends AbstractInterceptor
   {
      
  
  
  
  1.43      +3 -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.42
  retrieving revision 1.43
  diff -u -b -r1.42 -r1.43
  --- BusinessProcessInterceptor.java	1 Oct 2006 16:56:54 -0000	1.42
  +++ BusinessProcessInterceptor.java	2 Oct 2006 04:17:59 -0000	1.43
  @@ -30,9 +30,10 @@
    * Interceptor which handles interpretation of jBPM-related annotations.
    *
    * @author <a href="mailto:steve at hibernate.org">Steve Ebersole </a>
  - * @version $Revision: 1.42 $
  + * @version $Revision: 1.43 $
    */
  - at Interceptor(around={ValidationInterceptor.class, BijectionInterceptor.class, OutcomeInterceptor.class})
  + at Interceptor(stateless=true,
  +             around={ValidationInterceptor.class, BijectionInterceptor.class, OutcomeInterceptor.class})
   public class BusinessProcessInterceptor extends AbstractInterceptor
   {
      
  
  
  
  1.48      +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.47
  retrieving revision 1.48
  diff -u -b -r1.47 -r1.48
  --- ConversationInterceptor.java	26 Jul 2006 22:08:09 -0000	1.47
  +++ ConversationInterceptor.java	2 Oct 2006 04:17:59 -0000	1.48
  @@ -1,4 +1,4 @@
  -//$Id: ConversationInterceptor.java,v 1.47 2006/07/26 22:08:09 gavin Exp $
  +//$Id: ConversationInterceptor.java,v 1.48 2006/10/02 04:17:59 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import java.lang.reflect.Method;
  @@ -28,7 +28,8 @@
    * 
    * @author Gavin King
    */
  - at Interceptor(around={ValidationInterceptor.class, BijectionInterceptor.class, OutcomeInterceptor.class},
  + at Interceptor(stateless=true,
  +             around={ValidationInterceptor.class, BijectionInterceptor.class, OutcomeInterceptor.class},
                within=BusinessProcessInterceptor.class)
   public class ConversationInterceptor extends AbstractInterceptor
   {
  
  
  
  1.5       +3 -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.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- ConversationalInterceptor.java	26 Jul 2006 22:08:09 -0000	1.4
  +++ ConversationalInterceptor.java	2 Oct 2006 04:17:59 -0000	1.5
  @@ -1,4 +1,4 @@
  -//$Id: ConversationalInterceptor.java,v 1.4 2006/07/26 22:08:09 gavin Exp $
  +//$Id: ConversationalInterceptor.java,v 1.5 2006/10/02 04:17:59 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import java.lang.reflect.Method;
  @@ -27,7 +27,8 @@
    * 
    * @author Gavin King
    */
  - at Interceptor(around={ValidationInterceptor.class, BijectionInterceptor.class, OutcomeInterceptor.class, BusinessProcessInterceptor.class})
  + at Interceptor(stateless=true,
  +             around={ValidationInterceptor.class, BijectionInterceptor.class, OutcomeInterceptor.class, BusinessProcessInterceptor.class})
   public class ConversationalInterceptor extends AbstractInterceptor
   {
   
  
  
  
  1.3       +2 -1      jboss-seam/src/main/org/jboss/seam/interceptors/EventInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: EventInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/EventInterceptor.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- EventInterceptor.java	2 Oct 2006 00:28:45 -0000	1.2
  +++ EventInterceptor.java	2 Oct 2006 04:17:59 -0000	1.3
  @@ -15,7 +15,8 @@
    * @author Gavin King
    *
    */
  - at Interceptor(around={BijectionInterceptor.class, ConversationInterceptor.class, 
  + at Interceptor(stateless=true,
  +             around={BijectionInterceptor.class, ConversationInterceptor.class, 
                        TransactionInterceptor.class, BusinessProcessInterceptor.class, 
                        RollbackInterceptor.class})
   public class EventInterceptor extends AbstractInterceptor
  
  
  
  1.9       +3 -2      jboss-seam/src/main/org/jboss/seam/interceptors/ExceptionInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ExceptionInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/ExceptionInterceptor.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- ExceptionInterceptor.java	1 Oct 2006 15:52:58 -0000	1.8
  +++ ExceptionInterceptor.java	2 Oct 2006 04:17:59 -0000	1.9
  @@ -1,4 +1,4 @@
  -//$Id: ExceptionInterceptor.java,v 1.8 2006/10/01 15:52:58 gavin Exp $
  +//$Id: ExceptionInterceptor.java,v 1.9 2006/10/02 04:17:59 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import java.util.Map;
  @@ -28,7 +28,8 @@
    * 
    * @author Gavin King
    */
  - at Interceptor(around={ConversationalInterceptor.class, RemoveInterceptor.class, BijectionInterceptor.class})
  + at Interceptor(stateless=true,
  +             around={ConversationalInterceptor.class, RemoveInterceptor.class, BijectionInterceptor.class})
   public class ExceptionInterceptor extends AbstractInterceptor
   {
   
  
  
  
  1.5       +3 -1      jboss-seam/src/main/org/jboss/seam/interceptors/OutcomeInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: OutcomeInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/OutcomeInterceptor.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- OutcomeInterceptor.java	15 May 2006 09:23:13 -0000	1.4
  +++ OutcomeInterceptor.java	2 Oct 2006 04:17:59 -0000	1.5
  @@ -1,10 +1,11 @@
  -//$Id: OutcomeInterceptor.java,v 1.4 2006/05/15 09:23:13 theute Exp $
  +//$Id: OutcomeInterceptor.java,v 1.5 2006/10/02 04:17:59 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import javax.interceptor.AroundInvoke;
   import javax.interceptor.InvocationContext;
   import javax.faces.event.PhaseId;
   
  +import org.jboss.seam.annotations.Interceptor;
   import org.jboss.seam.annotations.Outcome;
   import org.jboss.seam.contexts.Lifecycle;
   
  @@ -13,6 +14,7 @@
    * 
    * @author Gavin King
    */
  + at Interceptor(stateless=true)
   public class OutcomeInterceptor extends AbstractInterceptor
   {
      @AroundInvoke
  
  
  
  1.14      +3 -2      jboss-seam/src/main/org/jboss/seam/interceptors/RemoveInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: RemoveInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/RemoveInterceptor.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -b -r1.13 -r1.14
  --- RemoveInterceptor.java	26 Jul 2006 22:08:09 -0000	1.13
  +++ RemoveInterceptor.java	2 Oct 2006 04:17:59 -0000	1.14
  @@ -1,4 +1,4 @@
  -//$Id: RemoveInterceptor.java,v 1.13 2006/07/26 22:08:09 gavin Exp $
  +//$Id: RemoveInterceptor.java,v 1.14 2006/10/02 04:17:59 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import java.lang.reflect.Method;
  @@ -20,7 +20,8 @@
    * 
    * @author Gavin King
    */
  - at Interceptor(around={ValidationInterceptor.class, BijectionInterceptor.class, ConversationInterceptor.class})
  + at Interceptor(stateless=true,
  +             around={ValidationInterceptor.class, BijectionInterceptor.class, ConversationInterceptor.class})
   public class RemoveInterceptor extends AbstractInterceptor
   {
       
  
  
  
  1.9       +2 -2      jboss-seam/src/main/org/jboss/seam/interceptors/RollbackInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: RollbackInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/RollbackInterceptor.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- RollbackInterceptor.java	26 Jul 2006 22:08:09 -0000	1.8
  +++ RollbackInterceptor.java	2 Oct 2006 04:17:59 -0000	1.9
  @@ -1,4 +1,4 @@
  -//$Id: RollbackInterceptor.java,v 1.8 2006/07/26 22:08:09 gavin Exp $
  +//$Id: RollbackInterceptor.java,v 1.9 2006/10/02 04:17:59 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import java.util.Arrays;
  @@ -18,7 +18,7 @@
    * 
    * @author Gavin King
    */
  - at Interceptor(around=OutcomeInterceptor.class)
  + at Interceptor(stateless=true, around=OutcomeInterceptor.class)
   public class RollbackInterceptor extends AbstractInterceptor 
   {
      
  
  
  
  1.6       +2 -1      jboss-seam/src/main/org/jboss/seam/interceptors/TransactionInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TransactionInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/TransactionInterceptor.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- TransactionInterceptor.java	26 Jul 2006 22:08:09 -0000	1.5
  +++ TransactionInterceptor.java	2 Oct 2006 04:17:59 -0000	1.6
  @@ -12,7 +12,8 @@
   import org.jboss.seam.annotations.Transactional;
   import org.jboss.seam.util.Transactions;
   
  - at Interceptor(around={RollbackInterceptor.class, BusinessProcessInterceptor.class, ConversationInterceptor.class})
  + at Interceptor(stateless=true,
  +             around={RollbackInterceptor.class, BusinessProcessInterceptor.class, ConversationInterceptor.class})
   public class TransactionInterceptor extends AbstractInterceptor
   {
      private static final Log log = LogFactory.getLog(TransactionInterceptor.class);
  
  
  
  1.20      +3 -2      jboss-seam/src/main/org/jboss/seam/interceptors/ValidationInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ValidationInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/ValidationInterceptor.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -b -r1.19 -r1.20
  --- ValidationInterceptor.java	26 Jul 2006 22:08:09 -0000	1.19
  +++ ValidationInterceptor.java	2 Oct 2006 04:17:59 -0000	1.20
  @@ -1,4 +1,4 @@
  -//$Id: ValidationInterceptor.java,v 1.19 2006/07/26 22:08:09 gavin Exp $
  +//$Id: ValidationInterceptor.java,v 1.20 2006/10/02 04:17:59 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import java.lang.reflect.Method;
  @@ -25,7 +25,8 @@
    * 
    * @author Gavin King
    */
  - at Interceptor(within={BijectionInterceptor.class, OutcomeInterceptor.class})
  + at Interceptor(stateless=true,
  +             within={BijectionInterceptor.class, OutcomeInterceptor.class})
   public class ValidationInterceptor extends AbstractInterceptor
   {
   
  
  
  



More information about the jboss-cvs-commits mailing list