dain        2005/02/14 22:24:04

  Modified:    modules/core/src/java/org/openejb/slsb/dispatch
                        EJBPassivateOperation.java
  Log:

  o Finished GERONIMO-181 Transaction propogation accross calls to stateful 
session beans
  
  o Added code resume and suspend the BMT transaction to 
StatefulInstanceInterceptor.  This code must be here because the instance 
context holds the suspended transaction, and this context is not available in 
the transaction interceptor.  Also the code that "finds" the correct instance 
relies on the transaction context already being established
  
  o Enabled stateful tests for session synchronization callbacks
  
  o Session synchronization callbacks now go through the system interceptor 
chain
  
  o Container policies now setRollbackOnly and throw a 
TransactionRolledbac[Local]Exception when a system exception is thrown in an 
inherited transaction
  
  o Fixed GERONIMO-579 UserTransaction broken after BMT calls BMT
  
  o Added support for ejb-ql back into the openejb-jar.xml file so 1.1 beans 
can use ejb-ql for a query specification
  
  o Fixed client side handle serialization code
  
  o Fixed stateful session ejb object isIdentical code; was not comparing 
primary key
  
  o Fixed handling of remove methods
  
  Revision  Changes    Path
  1.2       +2 -6      
openejb/modules/core/src/java/org/openejb/slsb/dispatch/EJBPassivateOperation.java
  
  Index: EJBPassivateOperation.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/slsb/dispatch/EJBPassivateOperation.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- EJBPassivateOperation.java        7 Jul 2004 22:17:35 -0000       1.1
  +++ EJBPassivateOperation.java        15 Feb 2005 03:24:04 -0000      1.2
  @@ -56,13 +56,9 @@
   import org.openejb.dispatch.AbstractSpecificMethodOperation;
   
   /**
  - *
  - *
    * @version $Revision$ $Date$
  - *
  - * */
  + */
   public class EJBPassivateOperation extends AbstractSpecificMethodOperation {
  -
       public static final EJBPassivateOperation INSTANCE = new 
EJBPassivateOperation();
   
       private EJBPassivateOperation() {}
  
  
  

Reply via email to