User: andreas
Date: 00/12/07 10:16:11
Modified: src/main/org/jboss/jdbc JdbcProvider.java
XADataSourceLoader.java
Log:
Changes to ServiceMBean therefore that if the Default-
Log class is not available then it does not logging.
Thus I could extract the JMX Connector (server-side)
from jBoss therefore that it can be used elsewhere.
Both (server- and client-side) connector archives are then
put in the new directory external which should keep all
archives developed under jBoss but available to other
groups.
Revision Changes Path
1.3 +2 -1 jboss/src/main/org/jboss/jdbc/JdbcProvider.java
Index: JdbcProvider.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/jdbc/JdbcProvider.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- JdbcProvider.java 2000/12/07 15:44:51 1.2
+++ JdbcProvider.java 2000/12/07 18:16:11 1.3
@@ -20,7 +20,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.2 $
+ * @version $Revision: 1.3 $
*/
public class JdbcProvider
extends org.jboss.util.ServiceMBeanSupport
@@ -78,3 +78,4 @@
}
}
}
+
1.14 +3 -2 jboss/src/main/org/jboss/jdbc/XADataSourceLoader.java
Index: XADataSourceLoader.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/jdbc/XADataSourceLoader.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- XADataSourceLoader.java 2000/12/07 15:44:51 1.13
+++ XADataSourceLoader.java 2000/12/07 18:16:11 1.14
@@ -30,7 +30,7 @@
* pool generates connections that are registered with the current Transaction
* and support two-phase commit. The constructors are called by the JMX engine
* based on your MLET tags.
- * @version $Revision: 1.13 $
+ * @version $Revision: 1.14 $
* @author Aaron Mulder ([EMAIL PROTECTED])
*/
public class XADataSourceLoader
@@ -71,7 +71,7 @@
public void setPoolName(String name)
{
this.name = name;
- log = new Log(name);
+ log = Log.createLog(name);
}
public String getPoolName()
@@ -388,4 +388,5 @@
return props;
}
}
+