dblevins    2005/02/19 04:46:38

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

  Removed getProxyFactory from EJBContainer interface and all references to it.
  Fixed the WSContainer so it doesn't put instances of InvocationResult in the 
soap message.
  Fixed the invocation test in WSContainerTest.
  Slightly improved the ulgy EJBInvocationStream code.
  
  Revision  Changes    Path
  1.2       +5 -5      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.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- MEJB.java 15 Feb 2005 04:47:00 -0000      1.1
  +++ MEJB.java 19 Feb 2005 09:46:38 -0000      1.2
  @@ -182,16 +182,16 @@
           return new String[0];
       }
   
  -    public EJBProxyFactory getProxyFactory() {
  -        return proxyFactory;
  -    }
  -
       public ClassLoader getClassLoader() {
           return this.getClass().getClassLoader();
       }
   
       public EJBContainer getUnmanagedReference() {
           return this;
  +    }
  +
  +    public int getMethodIndex(Method method) {
  +        return proxyFactory.getMethodIndex(method);
       }
   
       public InterfaceMethodSignature[] getSignatures() {
  
  
  

Reply via email to