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

Gavin King gavin.king at jboss.com
Sat Dec 16 05:17:14 EST 2006


  User: gavin   
  Date: 06/12/16 05:17:14

  Modified:    src/main/org/jboss/seam/interceptors    
                        ManagedEntityIdentityInterceptor.java
                        MethodContextInterceptor.java
                        TransactionInterceptor.java
                        ValidationInterceptor.java
  Log:
  javadoc
  
  Revision  Changes    Path
  1.17      +3 -3      jboss-seam/src/main/org/jboss/seam/interceptors/ManagedEntityIdentityInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ManagedEntityIdentityInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/ManagedEntityIdentityInterceptor.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -b -r1.16 -r1.17
  --- ManagedEntityIdentityInterceptor.java	15 Dec 2006 06:01:17 -0000	1.16
  +++ ManagedEntityIdentityInterceptor.java	16 Dec 2006 10:17:14 -0000	1.17
  @@ -15,9 +15,9 @@
   
   /**
    * Swizzles entity references around each invocation, maintaining
  - * referential even across passivation of the stateful bean or
  - * Seam-managed extended persistence context, and allowing for
  - * more efficient replication.
  + * referential integrity even across passivation of the stateful 
  + * bean or Seam-managed extended persistence context, and allowing 
  + * for more efficient replication.
    * 
    * @author Gavin King
    *
  
  
  
  1.2       +2 -1      jboss-seam/src/main/org/jboss/seam/interceptors/MethodContextInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MethodContextInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/MethodContextInterceptor.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- MethodContextInterceptor.java	14 Dec 2006 10:27:00 -0000	1.1
  +++ MethodContextInterceptor.java	16 Dec 2006 10:17:14 -0000	1.2
  @@ -8,7 +8,8 @@
   import org.jboss.seam.intercept.InvocationContext;
   
   /**
  - * Unproxies the SFSB for the length of the call.
  + * Sets up the METHOD context and unproxies the SFSB 
  + * for the duration of the call.
    * 
    * @author Gavin King
    *
  
  
  
  1.11      +6 -0      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.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- TransactionInterceptor.java	16 Dec 2006 10:03:45 -0000	1.10
  +++ TransactionInterceptor.java	16 Dec 2006 10:17:14 -0000	1.11
  @@ -9,6 +9,12 @@
   import org.jboss.seam.intercept.InvocationContext;
   import org.jboss.seam.util.Work;
   
  +/**
  + * Implements transaction propagation rules for Seam JavaBean components.
  + * 
  + * @author Gavin King
  + *
  + */
   @Interceptor(stateless=true,
                around={RollbackInterceptor.class, BusinessProcessInterceptor.class, ConversationInterceptor.class})
   public class TransactionInterceptor extends AbstractInterceptor
  
  
  
  1.25      +2 -1      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.24
  retrieving revision 1.25
  diff -u -b -r1.24 -r1.25
  --- ValidationInterceptor.java	16 Dec 2006 02:58:11 -0000	1.24
  +++ ValidationInterceptor.java	16 Dec 2006 10:17:14 -0000	1.25
  @@ -1,4 +1,4 @@
  -//$Id: ValidationInterceptor.java,v 1.24 2006/12/16 02:58:11 nrichards Exp $
  +//$Id: ValidationInterceptor.java,v 1.25 2006/12/16 10:17:14 gavin Exp $
   package org.jboss.seam.interceptors;
   
   import java.lang.reflect.Method;
  @@ -23,6 +23,7 @@
    * information about the failure in the request context and
    * return a different outcome, without invoking the method.
    * 
  + * @deprecated
    * @author Gavin King
    */
   @Interceptor(stateless=true,
  
  
  



More information about the jboss-cvs-commits mailing list