djencks     2005/03/15 00:27:08

  Modified:    modules/core/src/java/org/openejb/mejb MEJB.java
  Log:

  Make transaction policy mapping more generic and implement the 
no-distributed-transactions corba tx propagation polices.  CORBA operation name 
to method signature mapping is not yet really implemented
  
  Revision  Changes    Path
  1.3       +12 -1     openejb/modules/core/src/java/org/openejb/mejb/MEJB.java
  
  Index: MEJB.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/mejb/MEJB.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MEJB.java 19 Feb 2005 09:46:38 -0000      1.2
  +++ MEJB.java 15 Mar 2005 05:27:08 -0000      1.3
  @@ -52,6 +52,7 @@
   import java.lang.reflect.Method;
   import java.util.Iterator;
   import java.util.LinkedHashMap;
  +import java.io.Serializable;
   import javax.ejb.EJBException;
   import javax.ejb.EJBHome;
   import javax.ejb.EJBLocalHome;
  @@ -204,6 +205,16 @@
   
       public Subject getDefaultSubject() {
           //TODO this is wrong
  +        return null;
  +    }
  +
  +    //todo implement to make MEJB accessible through CORBA
  +    public Serializable getHomeTxPolicyConfig() {
  +        return null;
  +    }
  +
  +    //todo implement to make MEJB accessible through CORBA
  +    public Serializable getRemoteTxPolicyConfig() {
           return null;
       }
   
  
  
  

Reply via email to