dain        2006/02/01 06:50:08

  Modified:    modules/core/src/java/org/openejb/mdb/dispatch
                        SetMessageDrivenContextOperation.java
  Log:

  Major refactor
  Split container into an object to represent a deployed ejb and a set of 
shared containers which process invocations
  Introduced interface between CMP container and CMP engine
  
  Revision  Changes    Path
  1.2       +3 -3      
openejb/modules/core/src/java/org/openejb/mdb/dispatch/SetMessageDrivenContextOperation.java
  
  Index: SetMessageDrivenContextOperation.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/mdb/dispatch/SetMessageDrivenContextOperation.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SetMessageDrivenContextOperation.java     7 Jul 2004 22:17:34 -0000       
1.1
  +++ SetMessageDrivenContextOperation.java     1 Feb 2006 11:50:08 -0000       
1.2
  @@ -52,7 +52,7 @@
   import javax.ejb.MessageDrivenContext;
   
   import org.apache.geronimo.core.service.InvocationResult;
  -import org.openejb.EJBInvocation;
  +import org.openejb.EjbInvocation;
   import org.openejb.EJBOperation;
   import org.openejb.dispatch.AbstractSpecificMethodOperation;
   
  @@ -69,7 +69,7 @@
       private SetMessageDrivenContextOperation() {}
   
   
  -    public InvocationResult execute(EJBInvocation invocation) throws 
Throwable {
  +    public InvocationResult execute(EjbInvocation invocation) throws 
Throwable {
           return invoke(invocation, EJBOperation.SETCONTEXT);
       }
   
  
  
  

Reply via email to