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

Gavin King gavin.king at jboss.com
Thu Jun 21 01:27:28 EDT 2007


  User: gavin   
  Date: 07/06/21 01:27:28

  Modified:    src/main/org/jboss/seam/intercept   
                        EE5SeamInvocationContext.java
                        EJBInvocationContext.java InvocationContext.java
  Log:
  lots of new javadoc
  
  Revision  Changes    Path
  1.2       +7 -0      jboss-seam/src/main/org/jboss/seam/intercept/EE5SeamInvocationContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: EE5SeamInvocationContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/intercept/EE5SeamInvocationContext.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- EE5SeamInvocationContext.java	1 Nov 2006 02:54:02 -0000	1.1
  +++ EE5SeamInvocationContext.java	21 Jun 2007 05:27:28 -0000	1.2
  @@ -2,6 +2,13 @@
   
   import java.util.List;
   
  +/**
  + * Adapts from Seam's InvocationContext API to the standard EE5 API.
  + * (Not much to see here, they are identical apart from package names.)
  + * 
  + * @author Gavin King
  + *
  + */
   public class EE5SeamInvocationContext extends SeamInvocationContext implements javax.interceptor.InvocationContext
   {
   
  
  
  
  1.3       +7 -0      jboss-seam/src/main/org/jboss/seam/intercept/EJBInvocationContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: EJBInvocationContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/intercept/EJBInvocationContext.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- EJBInvocationContext.java	9 Feb 2007 03:44:22 -0000	1.2
  +++ EJBInvocationContext.java	21 Jun 2007 05:27:28 -0000	1.3
  @@ -3,6 +3,13 @@
   import java.lang.reflect.Method;
   import java.util.Map;
   
  +/**
  + * Wraps the invocation context coming from EJB3, and
  + * adapts it to the Seam version of the API.
  + * 
  + * @author Gavin King
  + *
  + */
   public class EJBInvocationContext implements InvocationContext, javax.interceptor.InvocationContext
   {
      private javax.interceptor.InvocationContext context;
  
  
  
  1.2       +8 -0      jboss-seam/src/main/org/jboss/seam/intercept/InvocationContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InvocationContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/intercept/InvocationContext.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- InvocationContext.java	1 Nov 2006 02:54:02 -0000	1.1
  +++ InvocationContext.java	21 Jun 2007 05:27:28 -0000	1.2
  @@ -3,6 +3,14 @@
   import java.lang.reflect.Method;
   import java.util.Map;
   
  +/**
  + * A copy of the EE5 standard InvocationContext API.
  + * We do this because some poor souls are still using
  + * J2EE. Pray for them.
  + * 
  + * @author Gavin King
  + *
  + */
   public interface InvocationContext
   {
      public Object getTarget();
  
  
  



More information about the jboss-cvs-commits mailing list