chirino     2004/10/30 01:18:25

  Modified:    modules/core/src/java/org/openejb ContainerIndex.java
                        EJBModuleImpl.java GenericEJBContainer.java
  Log:

  Renamed GBeanInfoFactory to GBeanInfoBuilder.
  
  Revision  Changes    Path
  1.12      +3 -3      openejb/modules/core/src/java/org/openejb/ContainerIndex.java
  
  Index: ContainerIndex.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/ContainerIndex.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- ContainerIndex.java       13 Oct 2004 16:43:55 -0000      1.11
  +++ ContainerIndex.java       30 Oct 2004 05:18:25 -0000      1.12
  @@ -50,7 +50,7 @@
   import java.util.Iterator;
   
   import org.apache.geronimo.gbean.GBeanInfo;
  -import org.apache.geronimo.gbean.GBeanInfoFactory;
  +import org.apache.geronimo.gbean.GBeanInfoBuilder;
   import org.apache.geronimo.gbean.GBeanLifecycle;
   import org.apache.geronimo.gbean.ReferenceCollection;
   import org.apache.geronimo.gbean.ReferenceCollectionEvent;
  @@ -210,7 +210,7 @@
       public static final GBeanInfo GBEAN_INFO;
   
       static {
  -        GBeanInfoFactory infoFactory = new GBeanInfoFactory(ContainerIndex.class);
  +        GBeanInfoBuilder infoFactory = new GBeanInfoBuilder(ContainerIndex.class);
   
           infoFactory.setConstructor(new String[]{"EJBContainers"});
   
  
  
  
  1.11      +3 -3      openejb/modules/core/src/java/org/openejb/EJBModuleImpl.java
  
  Index: EJBModuleImpl.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/EJBModuleImpl.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- EJBModuleImpl.java        28 Oct 2004 01:56:09 -0000      1.10
  +++ EJBModuleImpl.java        30 Oct 2004 05:18:25 -0000      1.11
  @@ -52,7 +52,7 @@
   import javax.management.ObjectName;
   
   import org.apache.geronimo.gbean.GBeanInfo;
  -import org.apache.geronimo.gbean.GBeanInfoFactory;
  +import org.apache.geronimo.gbean.GBeanInfoBuilder;
   import org.apache.geronimo.gbean.GBeanLifecycle;
   import org.apache.geronimo.gbean.WaitingException;
   import org.apache.geronimo.j2ee.management.J2EEApplication;
  @@ -183,7 +183,7 @@
       public static final GBeanInfo GBEAN_INFO;
   
       static {
  -        GBeanInfoFactory infoFactory = new GBeanInfoFactory(EJBModuleImpl.class);
  +        GBeanInfoBuilder infoFactory = new GBeanInfoBuilder(EJBModuleImpl.class);
           infoFactory.addReference("J2EEServer", J2EEServer.class);
           infoFactory.addReference("J2EEApplication", J2EEApplication.class);
   
  
  
  
  1.22      +3 -3      
openejb/modules/core/src/java/org/openejb/GenericEJBContainer.java
  
  Index: GenericEJBContainer.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/GenericEJBContainer.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- GenericEJBContainer.java  5 Oct 2004 07:04:00 -0000       1.21
  +++ GenericEJBContainer.java  30 Oct 2004 05:18:25 -0000      1.22
  @@ -70,7 +70,7 @@
   import org.apache.geronimo.core.service.Invocation;
   import org.apache.geronimo.core.service.InvocationResult;
   import org.apache.geronimo.gbean.GBeanInfo;
  -import org.apache.geronimo.gbean.GBeanInfoFactory;
  +import org.apache.geronimo.gbean.GBeanInfoBuilder;
   import org.apache.geronimo.gbean.GBeanLifecycle;
   import org.apache.geronimo.gbean.WaitingException;
   import org.apache.geronimo.kernel.Kernel;
  @@ -421,7 +421,7 @@
       public static final GBeanInfo GBEAN_INFO;
   
       static {
  -        GBeanInfoFactory infoFactory = new 
GBeanInfoFactory(GenericEJBContainer.class);
  +        GBeanInfoBuilder infoFactory = new 
GBeanInfoBuilder(GenericEJBContainer.class);
   
           infoFactory.addAttribute("ContainerID", Object.class, true);
           infoFactory.addAttribute("EJBName", String.class, true);
  
  
  

Reply via email to