User: oberg
Date: 00/12/07 07:45:30
Modified: src/main/test/jboss/testdb TestConnection.java
TestDBDriver.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.2 +2 -2 jboss/src/main/test/jboss/testdb/TestConnection.java
Index: TestConnection.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/test/jboss/testdb/TestConnection.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TestConnection.java 2000/06/05 03:18:43 1.1
+++ TestConnection.java 2000/12/07 15:45:29 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 test.jboss.testdb;
@@ -13,7 +13,7 @@
* Database connection for unit tests. Currently nothing is implemented except
* close, isClosed, isAutoCommit, setAutoCommit(true), and rollback. Everything
* else throws a SQLException.
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
* @author Aaron Mulder ([EMAIL PROTECTED])
*/
public class TestConnection implements Connection {
1.4 +3 -3 jboss/src/main/test/jboss/testdb/TestDBDriver.java
Index: TestDBDriver.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/test/jboss/testdb/TestDBDriver.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TestDBDriver.java 2000/09/28 01:17:12 1.3
+++ TestDBDriver.java 2000/12/07 15:45:29 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 test.jboss.testdb;
@@ -12,7 +12,7 @@
/**
* Database driver for unit tests. Creates connections that implement virtually
* nothing - enough to test with, in other words.
- * @version $Revision: 1.3 $
+ * @version $Revision: 1.4 $
* @author Aaron Mulder ([EMAIL PROTECTED])
*/
public class TestDBDriver implements Driver {