User: oberg
Date: 00/12/07 07:45:07
Modified: src/main/org/jboss/minerva/pools ObjectPool.java
ObjectRecord.java PoolEvent.java
PoolEventListener.java PoolGCThread.java
PoolObjectFactory.java PooledObject.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.17 +3 -3 jboss/src/main/org/jboss/minerva/pools/ObjectPool.java
Index: ObjectPool.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/minerva/pools/ObjectPool.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ObjectPool.java 2000/11/15 18:03:09 1.16
+++ ObjectPool.java 2000/12/07 15:45:06 1.17
@@ -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.pools;
@@ -28,7 +28,7 @@
* <LI>Shut it down</LI>
* </OL>
* @see org.jboss.minerva.pools.PooledObject
- * @version $Revision: 1.16 $
+ * @version $Revision: 1.17 $
* @author Aaron Mulder ([EMAIL PROTECTED])
*/
public class ObjectPool implements PoolEventListener {
1.3 +3 -3 jboss/src/main/org/jboss/minerva/pools/ObjectRecord.java
Index: ObjectRecord.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/minerva/pools/ObjectRecord.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ObjectRecord.java 2000/10/05 01:36:35 1.2
+++ ObjectRecord.java 2000/12/07 15:45:06 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.pools;
@@ -10,7 +10,7 @@
/**
* Stores the properties of an object in a pool.
- * @version $Revision: 1.2 $
+ * @version $Revision: 1.3 $
* @author Aaron Mulder ([EMAIL PROTECTED])
*/
class ObjectRecord {
1.3 +3 -3 jboss/src/main/org/jboss/minerva/pools/PoolEvent.java
Index: PoolEvent.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/minerva/pools/PoolEvent.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- PoolEvent.java 2000/08/31 17:28:48 1.2
+++ PoolEvent.java 2000/12/07 15:45:06 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.pools;
@@ -13,7 +13,7 @@
* object was used, closed, or had an error occur. The typical response is
* to update the last used time in the pool for used events, and return the
* object to the pool for closed or error events.
- * @version $Revision: 1.2 $
+ * @version $Revision: 1.3 $
* @author Aaron Mulder ([EMAIL PROTECTED])
*/
public class PoolEvent extends EventObject {
1.2 +3 -3 jboss/src/main/org/jboss/minerva/pools/PoolEventListener.java
Index: PoolEventListener.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/minerva/pools/PoolEventListener.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PoolEventListener.java 2000/06/02 13:48:45 1.1
+++ PoolEventListener.java 2000/12/07 15:45:06 1.2
@@ -1,14 +1,14 @@
/*
- * 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.pools;
/**
* A listener for object pool events.
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
* @author Aaron Mulder ([EMAIL PROTECTED])
*/
public interface PoolEventListener {
1.2 +3 -3 jboss/src/main/org/jboss/minerva/pools/PoolGCThread.java
Index: PoolGCThread.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/minerva/pools/PoolGCThread.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PoolGCThread.java 2000/06/02 13:48:45 1.1
+++ PoolGCThread.java 2000/12/07 15:45:06 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.pools;
@@ -13,7 +13,7 @@
* created, no matter how many pools there are - it just tries to calculate
* the next time it should run based on the figues for all the pools. It will
* run on any pools which are "pretty close" to their requested time.
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
* @author Aaron Mulder ([EMAIL PROTECTED])
*/
class PoolGCThread extends Thread {
1.5 +3 -3 jboss/src/main/org/jboss/minerva/pools/PoolObjectFactory.java
Index: PoolObjectFactory.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/minerva/pools/PoolObjectFactory.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- PoolObjectFactory.java 2000/08/30 12:41:52 1.4
+++ PoolObjectFactory.java 2000/12/07 15:45:07 1.5
@@ -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.pools;
@@ -11,7 +11,7 @@
/**
* Creates objects to be used in an object pool. This is a class instead of
* an interface so you can ignore any of the methods you don't need.
- * @version $Revision: 1.4 $
+ * @version $Revision: 1.5 $
* @author Aaron Mulder ([EMAIL PROTECTED])
*/
public abstract class PoolObjectFactory {
1.2 +3 -3 jboss/src/main/org/jboss/minerva/pools/PooledObject.java
Index: PooledObject.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/minerva/pools/PooledObject.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PooledObject.java 2000/06/02 13:48:46 1.1
+++ PooledObject.java 2000/12/07 15:45:07 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.pools;
@@ -12,7 +12,7 @@
* when an object is checked out, and deregister when the object is returned.
* Then if the object sends a close or error event, the pool will return the
* object to the pool without the client having to do so explicitly.
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
* @author Aaron Mulder ([EMAIL PROTECTED])
*/
public interface PooledObject {