chirino     2004/10/30 01:18:27

  Modified:    modules/core/src/java/org/openejb/entity/cmp/pkgenerator
                        SQLPrimaryKeyGeneratorWrapper.java
                        SequenceTablePrimaryKeyGeneratorWrapper.java
  Log:

  Renamed GBeanInfoFactory to GBeanInfoBuilder.
  
  Revision  Changes    Path
  1.3       +3 -3      
openejb/modules/core/src/java/org/openejb/entity/cmp/pkgenerator/SQLPrimaryKeyGeneratorWrapper.java
  
  Index: SQLPrimaryKeyGeneratorWrapper.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/entity/cmp/pkgenerator/SQLPrimaryKeyGeneratorWrapper.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SQLPrimaryKeyGeneratorWrapper.java        28 Oct 2004 01:56:10 -0000      1.2
  +++ SQLPrimaryKeyGeneratorWrapper.java        30 Oct 2004 05:18:27 -0000      1.3
  @@ -57,7 +57,7 @@
   import org.apache.commons.logging.LogFactory;
   import org.apache.geronimo.connector.outbound.ManagedConnectionFactoryWrapper;
   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.tranql.field.FieldAccessor;
  @@ -123,7 +123,7 @@
       public static final GBeanInfo GBEAN_INFO;
   
       static {
  -        GBeanInfoFactory infoFactory = new 
GBeanInfoFactory(SQLPrimaryKeyGeneratorWrapper.class);
  +        GBeanInfoBuilder infoFactory = new 
GBeanInfoBuilder(SQLPrimaryKeyGeneratorWrapper.class);
           infoFactory.addInterface(PrimaryKeyGenerator.class);
           
           infoFactory.addReference("ManagedConnectionFactoryWrapper", 
ManagedConnectionFactoryWrapper.class);
  
  
  
  1.3       +3 -3      
openejb/modules/core/src/java/org/openejb/entity/cmp/pkgenerator/SequenceTablePrimaryKeyGeneratorWrapper.java
  
  Index: SequenceTablePrimaryKeyGeneratorWrapper.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/entity/cmp/pkgenerator/SequenceTablePrimaryKeyGeneratorWrapper.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SequenceTablePrimaryKeyGeneratorWrapper.java      28 Oct 2004 01:56:10 -0000     
 1.2
  +++ SequenceTablePrimaryKeyGeneratorWrapper.java      30 Oct 2004 05:18:27 -0000     
 1.3
  @@ -53,7 +53,7 @@
   import org.apache.commons.logging.LogFactory;
   import org.apache.geronimo.connector.outbound.ManagedConnectionFactoryWrapper;
   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.tranql.pkgenerator.PrimaryKeyGenerator;
  @@ -102,7 +102,7 @@
       public static final GBeanInfo GBEAN_INFO;
   
       static {
  -        GBeanInfoFactory infoFactory = new 
GBeanInfoFactory(SequenceTablePrimaryKeyGeneratorWrapper.class);
  +        GBeanInfoBuilder infoFactory = new 
GBeanInfoBuilder(SequenceTablePrimaryKeyGeneratorWrapper.class);
           infoFactory.addInterface(PrimaryKeyGenerator.class);
           
           infoFactory.addReference("ManagedConnectionFactoryWrapper", 
ManagedConnectionFactoryWrapper.class);
  
  
  

Reply via email to