User: oberg   
  Date: 00/12/07 07:45:06

  Modified:    src/main/org/jboss/minerva/jdbc ConnectionInPool.java
                        ConnectionWrapper.java PreparedStatementInPool.java
                        ResultSetInPool.java StatementInPool.java
  Log:
  Changed configuration scheme (lots of changes to jboss.conf, jboss.jcml, 
org.jboss.Main)
  Added ServiceControl
  Changed jBoss -> JBoss
  Changed GPL -> LGPL
  Added jaxp/parser
  Updated services to have default constructors
  
  Revision  Changes    Path
  1.8       +3 -3      jboss/src/main/org/jboss/minerva/jdbc/ConnectionInPool.java
  
  Index: ConnectionInPool.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/jboss/src/main/org/jboss/minerva/jdbc/ConnectionInPool.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ConnectionInPool.java     2000/11/10 13:32:14     1.7
  +++ ConnectionInPool.java     2000/12/07 15:45:04     1.8
  @@ -1,7 +1,7 @@
   /*
  - * jBoss, the OpenSource EJB server
  + * JBoss, the OpenSource EJB server
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
   package org.jboss.minerva.jdbc;
  @@ -29,7 +29,7 @@
    * outstanding statements are closed, and the connection is rolled back.  This
    * class is also used by statements, etc. to update the last used time for the
    * connection.
  - * @version $Revision: 1.7 $
  + * @version $Revision: 1.8 $
    * @author Aaron Mulder ([EMAIL PROTECTED])
    */
   public class ConnectionInPool implements PooledObject, ConnectionWrapper {
  
  
  
  1.2       +3 -3      jboss/src/main/org/jboss/minerva/jdbc/ConnectionWrapper.java
  
  Index: ConnectionWrapper.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/jboss/src/main/org/jboss/minerva/jdbc/ConnectionWrapper.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ConnectionWrapper.java    2000/06/02 13:48:43     1.1
  +++ ConnectionWrapper.java    2000/12/07 15:45:05     1.2
  @@ -1,7 +1,7 @@
   /*
  - * jBoss, the OpenSource EJB server
  + * JBoss, the OpenSource EJB server
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
   package org.jboss.minerva.jdbc;
  @@ -14,7 +14,7 @@
    * connections in a pool and as a wrapper for connections handed out by an
    * XAConnection.
    * @see javax.sql.XAConnection
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    * @author Aaron Mulder ([EMAIL PROTECTED])
    */
   public interface ConnectionWrapper extends Connection {
  
  
  
  1.4       +2 -2      
jboss/src/main/org/jboss/minerva/jdbc/PreparedStatementInPool.java
  
  Index: PreparedStatementInPool.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/jboss/src/main/org/jboss/minerva/jdbc/PreparedStatementInPool.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PreparedStatementInPool.java      2000/10/31 17:26:26     1.3
  +++ PreparedStatementInPool.java      2000/12/07 15:45:05     1.4
  @@ -1,7 +1,7 @@
   /*
  - * jBoss, the OpenSource EJB server
  + * JBoss, the OpenSource EJB server
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
   package org.jboss.minerva.jdbc;
  
  
  
  1.4       +3 -3      jboss/src/main/org/jboss/minerva/jdbc/ResultSetInPool.java
  
  Index: ResultSetInPool.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/jboss/src/main/org/jboss/minerva/jdbc/ResultSetInPool.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ResultSetInPool.java      2000/10/19 20:01:19     1.3
  +++ ResultSetInPool.java      2000/12/07 15:45:05     1.4
  @@ -1,7 +1,7 @@
   /*
  - * jBoss, the OpenSource EJB server
  + * JBoss, the OpenSource EJB server
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
   package org.jboss.minerva.jdbc;
  @@ -23,7 +23,7 @@
    * Wraps a result set to track the last used time for the owning connection.
    * That time is updated every time a navigation action is performed on the
    * result set (next, previous, etc.).
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    * @author Aaron Mulder ([EMAIL PROTECTED])
    */
   public class ResultSetInPool implements ResultSet {
  
  
  
  1.3       +3 -3      jboss/src/main/org/jboss/minerva/jdbc/StatementInPool.java
  
  Index: StatementInPool.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/jboss/src/main/org/jboss/minerva/jdbc/StatementInPool.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- StatementInPool.java      2000/08/30 16:17:05     1.2
  +++ StatementInPool.java      2000/12/07 15:45:05     1.3
  @@ -1,7 +1,7 @@
   /*
  - * jBoss, the OpenSource EJB server
  + * JBoss, the OpenSource EJB server
    *
  - * Distributable under GPL license.
  + * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
   package org.jboss.minerva.jdbc;
  @@ -17,7 +17,7 @@
    * Wraps a Statement to track errors and the last used time for the owning
    * connection. That time is updated every time a SQL action is performed
    * (executeQuery, executeUpdate, etc.).
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    * @author Aaron Mulder ([EMAIL PROTECTED])
    */
   public class StatementInPool implements Statement {
  
  
  

Reply via email to