dain        2004/04/15 22:34:08

  Modified:    modules/core/src/test/org/openejb/deployment
                        EJBConfigBuilderTest.java
  Log:

  Changed container id to a String
  Simplified requirements to create an EJBProxyFactory
  EJBProxyFactory is now constructed in the GenericEJBContainer constructor
  Change ProxyRefAddress to store the class names instead of a proxy info
  object; this allows the construction of an ejb-ref without knowing the
  container type
  Merged stateless and stateful object base classes into a single class,
  which simplifies proxy construction
  
  Revision  Changes    Path
  1.6       +2 -2      
openejb/modules/core/src/test/org/openejb/deployment/EJBConfigBuilderTest.java
  
  Index: EJBConfigBuilderTest.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/test/org/openejb/deployment/EJBConfigBuilderTest.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- EJBConfigBuilderTest.java 13 Apr 2004 20:18:49 -0000      1.5
  +++ EJBConfigBuilderTest.java 16 Apr 2004 02:34:08 -0000      1.6
  @@ -106,7 +106,7 @@
   
           try {
               Thread.currentThread().setContextClassLoader(cl);
  -            configBuilder.createSessionBean("containerId", sessionBean, 
openejbSessionBean, transactionPolicyHelper, new HashMap(), cl);
  +            configBuilder.createSessionBean("containerId", sessionBean, 
openejbSessionBean, new HashMap(), transactionPolicyHelper, cl);
           } finally {
               Thread.currentThread().setContextClassLoader(oldCl);
           }
  
  
  

Reply via email to