User: oberg
Date: 00/12/07 07:45:23
Modified: src/main/org/jboss/util CachePolicy.java
ClassPathExtension.java
ClassPathExtensionMBean.java Executable.java
Executor.java ExecutorMBean.java FastKey.java
Heap.java Info.java InfoMBean.java
LRUCachePolicy.java MBeanProxy.java
SerializableEnumeration.java Service.java
ServiceMBean.java ServiceMBeanSupport.java
SystemProperties.java SystemPropertiesMBean.java
TimerQueue.java TimerTask.java WorkerQueue.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 +3 -3 jboss/src/main/org/jboss/util/CachePolicy.java
Index: CachePolicy.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/CachePolicy.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- CachePolicy.java 2000/10/16 23:20:12 1.1
+++ CachePolicy.java 2000/12/07 15:45:19 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.util;
@@ -12,7 +12,7 @@
* a MRU one, or any other suitable policy.
*
* @author Simone Bordet ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public interface CachePolicy extends Service
{
1.8 +52 -41 jboss/src/main/org/jboss/util/ClassPathExtension.java
Index: ClassPathExtension.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/util/ClassPathExtension.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ClassPathExtension.java 2000/11/15 17:02:59 1.7
+++ ClassPathExtension.java 2000/12/07 15:45:19 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.util;
@@ -12,7 +12,7 @@
import javax.management.*;
import javax.management.loading.MLet;
-import org.jboss.logging.Logger;
+import org.jboss.logging.Log;
import org.jboss.util.ServiceMBeanSupport;
/**
@@ -20,11 +20,10 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.7 $
+ * @version $Revision: 1.8 $
*/
public class ClassPathExtension
- extends ServiceMBeanSupport
- implements ClassPathExtensionMBean
+ implements ClassPathExtensionMBean, MBeanRegistration
{
// Constants -----------------------------------------------------
public static final String OBJECT_NAME = ":service=ClassPathExtension";
@@ -33,6 +32,8 @@
String url;
String name;
+ Log log = new Log("Classpath extension");
+
// Static --------------------------------------------------------
// Constructors --------------------------------------------------
@@ -46,21 +47,16 @@
this.name = name;
this.url = url;
}
-
- // Public --------------------------------------------------------
- public ObjectName getObjectName(MBeanServer server, ObjectName ojbName)
- throws javax.management.MalformedObjectNameException
- {
- return ojbName == null ? new ObjectName(OBJECT_NAME+",name="+this.name) :
ojbName;
- }
- public String getName()
+ // MBeanRegistration implementation ------------------------------
+ public ObjectName preRegister(MBeanServer server,
+ ObjectName objName)
+ throws java.lang.Exception
{
- return "Classpath extension";
+ return objName == null ? new ObjectName(OBJECT_NAME+",name="+this.name) :
objName;
}
- public void initService()
- throws java.lang.Exception
+ public void postRegister(java.lang.Boolean registrationDone)
{
String separator = System.getProperty("path.separator");
String classPath = System.getProperty("java.class.path");
@@ -79,7 +75,7 @@
{
dir = new
File(getClass().getProtectionDomain().getCodeSource().getLocation().getFile(), url);
}
-
+
try
{
String[] files = dir.list();
@@ -89,16 +85,16 @@
if (files[i].endsWith(".jar") || files[i].endsWith(".zip"))
{
URL file = new File(dir, files[i]).getCanonicalFile().toURL();
- Logger.debug("Added library:"+file);
+ log.debug("Added library:"+file);
mlet.addURL(file);
-
+
// Add to java.class.path
classPath += separator + file.getFile();
-
+
found++;
}
}
-
+
if (found == 0)
{
// Add dir
@@ -106,20 +102,20 @@
{
URL u = new
URL(getClass().getProtectionDomain().getCodeSource().getLocation(),url);
mlet.addURL(u);
-
+
// Add to java.class.path
classPath += separator + u.getFile();
-
- Logger.debug("Added directory:"+u);
+
+ log.debug("Added directory:"+u);
} catch (MalformedURLException e)
{
URL u = new File(url).toURL();
mlet.addURL(u);
-
+
// Add to java.class.path
classPath += separator + u.getFile();
-
- Logger.debug("Added directory:"+url);
+
+ log.debug("Added directory:"+url);
}
}
} catch (Throwable ex)
@@ -132,26 +128,41 @@
{
URL u = new
URL(getClass().getProtectionDomain().getCodeSource().getLocation(),url);
mlet.addURL(u);
-
+
// Add to java.class.path
classPath += separator + u.getFile();
-
- Logger.debug("Added library:"+u);
+
+ log.debug("Added library:"+u);
} catch (MalformedURLException e)
{
- URL u = new File(url).toURL();
- mlet.addURL(u);
-
- // Add to java.class.path
- classPath += separator + u.getFile();
-
- Logger.debug("Added library:"+url);
+ try
+ {
+ URL u = new File(url).toURL();
+ mlet.addURL(u);
+
+ // Add to java.class.path
+ classPath += separator + u.getFile();
+
+ log.debug("Added library:"+url);
+ } catch (MalformedURLException ex)
+ {
+ log.exception(ex);
+ }
}
}
-
+
// Set java.class.path
System.setProperty("java.class.path", classPath);
}
- // Protected -----------------------------------------------------
+
+ public void preDeregister()
+ throws java.lang.Exception
+ {
+
+ }
+
+ public void postDeregister()
+ {
+
+ }
}
-
1.2 +3 -3 jboss/src/main/org/jboss/util/ClassPathExtensionMBean.java
Index: ClassPathExtensionMBean.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/util/ClassPathExtensionMBean.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ClassPathExtensionMBean.java 2000/04/22 14:30:13 1.1
+++ ClassPathExtensionMBean.java 2000/12/07 15:45:19 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.util;
@@ -13,7 +13,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public interface ClassPathExtensionMBean
{
1.2 +3 -3 jboss/src/main/org/jboss/util/Executable.java
Index: Executable.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/Executable.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Executable.java 2000/10/16 23:16:03 1.1
+++ Executable.java 2000/12/07 15:45:20 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.util;
@@ -11,7 +11,7 @@
*
* @see WorkerQueue
* @author Simone Bordet ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public interface Executable
{
1.2 +3 -3 jboss/src/main/org/jboss/util/Executor.java
Index: Executor.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/Executor.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Executor.java 2000/04/22 14:30:13 1.1
+++ Executor.java 2000/12/07 15:45:20 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.util;
@@ -19,7 +19,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public class Executor
implements ExecutorMBean, MBeanRegistration
1.2 +3 -3 jboss/src/main/org/jboss/util/ExecutorMBean.java
Index: ExecutorMBean.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/ExecutorMBean.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ExecutorMBean.java 2000/04/22 14:30:13 1.1
+++ ExecutorMBean.java 2000/12/07 15:45:20 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.util;
@@ -13,7 +13,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public interface ExecutorMBean
{
1.8 +3 -3 jboss/src/main/org/jboss/util/FastKey.java
Index: FastKey.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/FastKey.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- FastKey.java 2000/08/25 02:20:40 1.7
+++ FastKey.java 2000/12/07 15:45:20 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.util;
@@ -18,7 +18,7 @@
*
* @see org.jboss.ejb.plugins.NoPassivationInstanceCache.java
* @author <a href="[EMAIL PROTECTED]">Marc Fleury</a>
-* @version $Revision: 1.7 $
+* @version $Revision: 1.8 $
*/
public class FastKey
extends CacheKey
1.2 +3 -3 jboss/src/main/org/jboss/util/Heap.java
Index: Heap.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/Heap.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Heap.java 2000/10/16 23:19:41 1.1
+++ Heap.java 2000/12/07 15:45:20 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.util;
@@ -15,7 +15,7 @@
* Comparator should be given as argument to the constructor.
*
* @author Simone Bordet ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public class Heap
{
1.3 +3 -3 jboss/src/main/org/jboss/util/Info.java
Index: Info.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/Info.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Info.java 2000/09/28 01:17:11 1.2
+++ Info.java 2000/12/07 15:45:20 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.util;
@@ -19,7 +19,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.2 $
+ * @version $Revision: 1.3 $
*/
public class Info
implements InfoMBean, MBeanRegistration
1.2 +3 -3 jboss/src/main/org/jboss/util/InfoMBean.java
Index: InfoMBean.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/InfoMBean.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- InfoMBean.java 2000/04/22 14:30:13 1.1
+++ InfoMBean.java 2000/12/07 15:45:20 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.util;
@@ -11,7 +11,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public interface InfoMBean
{
1.5 +3 -3 jboss/src/main/org/jboss/util/LRUCachePolicy.java
Index: LRUCachePolicy.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/LRUCachePolicy.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- LRUCachePolicy.java 2000/10/25 10:03:57 1.4
+++ LRUCachePolicy.java 2000/12/07 15:45:20 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.util;
@@ -12,7 +12,7 @@
* Implementation of a Least Recently Used cache policy.
*
* @author Simone Bordet ([EMAIL PROTECTED])
- * @version $Revision: 1.4 $
+ * @version $Revision: 1.5 $
*/
public class LRUCachePolicy
implements CachePolicy
1.4 +3 -3 jboss/src/main/org/jboss/util/MBeanProxy.java
Index: MBeanProxy.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/MBeanProxy.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- MBeanProxy.java 2000/09/08 20:20:39 1.3
+++ MBeanProxy.java 2000/12/07 15:45:20 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.util;
@@ -22,7 +22,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.3 $
+ * @version $Revision: 1.4 $
*/
public class MBeanProxy
implements InvocationHandler
1.2 +2 -2 jboss/src/main/org/jboss/util/SerializableEnumeration.java
Index: SerializableEnumeration.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/util/SerializableEnumeration.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- SerializableEnumeration.java 2000/07/26 22:32:57 1.1
+++ SerializableEnumeration.java 2000/12/07 15:45:20 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.
*/
1.2 +3 -9 jboss/src/main/org/jboss/util/Service.java
Index: Service.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/Service.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Service.java 2000/04/22 14:30:13 1.1
+++ Service.java 2000/12/07 15:45:20 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.util;
@@ -11,16 +11,10 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public interface Service
{
- // Constants -----------------------------------------------------
-
- // Static --------------------------------------------------------
-
- // Public --------------------------------------------------------
-
public void init()
throws Exception;
1.3 +3 -3 jboss/src/main/org/jboss/util/ServiceMBean.java
Index: ServiceMBean.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/ServiceMBean.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ServiceMBean.java 2000/06/16 13:10:32 1.2
+++ ServiceMBean.java 2000/12/07 15:45:20 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.util;
@@ -11,7 +11,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.2 $
+ * @version $Revision: 1.3 $
*/
public interface ServiceMBean
extends Service
1.8 +3 -5 jboss/src/main/org/jboss/util/ServiceMBeanSupport.java
Index: ServiceMBeanSupport.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/util/ServiceMBeanSupport.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ServiceMBeanSupport.java 2000/11/17 14:20:09 1.7
+++ ServiceMBeanSupport.java 2000/12/07 15:45:21 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.util;
@@ -20,7 +20,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.7 $
+ * @version $Revision: 1.8 $
*/
public abstract class ServiceMBeanSupport
extends NotificationBroadcasterSupport
@@ -158,8 +158,6 @@
{
name = getObjectName(server, name);
- init();
-
return name;
}
1.2 +3 -3 jboss/src/main/org/jboss/util/SystemProperties.java
Index: SystemProperties.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/SystemProperties.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- SystemProperties.java 2000/04/22 14:30:13 1.1
+++ SystemProperties.java 2000/12/07 15:45:21 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.util;
@@ -19,7 +19,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public class SystemProperties
implements SystemPropertiesMBean, MBeanRegistration
1.2 +3 -3 jboss/src/main/org/jboss/util/SystemPropertiesMBean.java
Index: SystemPropertiesMBean.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/util/SystemPropertiesMBean.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- SystemPropertiesMBean.java 2000/04/22 14:30:13 1.1
+++ SystemPropertiesMBean.java 2000/12/07 15:45:21 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.util;
@@ -11,7 +11,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public interface SystemPropertiesMBean
{
1.2 +3 -3 jboss/src/main/org/jboss/util/TimerQueue.java
Index: TimerQueue.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/TimerQueue.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TimerQueue.java 2000/10/16 23:19:02 1.1
+++ TimerQueue.java 2000/12/07 15:45:21 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.util;
@@ -14,7 +14,7 @@
*
* @see TimerTask
* @author Simone Bordet ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public class TimerQueue
extends WorkerQueue
1.2 +3 -3 jboss/src/main/org/jboss/util/TimerTask.java
Index: TimerTask.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/TimerTask.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TimerTask.java 2000/10/16 23:18:45 1.1
+++ TimerTask.java 2000/12/07 15:45:21 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.util;
@@ -14,7 +14,7 @@
*
* @see TimerQueue
* @author Simone Bordet ([EMAIL PROTECTED])
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.2 $
*/
public abstract class TimerTask
implements Executable, Comparable
1.5 +3 -3 jboss/src/main/org/jboss/util/WorkerQueue.java
Index: WorkerQueue.java
===================================================================
RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/util/WorkerQueue.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- WorkerQueue.java 2000/11/09 09:41:37 1.4
+++ WorkerQueue.java 2000/12/07 15:45:21 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.util;
@@ -12,7 +12,7 @@
*
* @see Executable
* @author Simone Bordet ([EMAIL PROTECTED])
- * @version $Revision: 1.4 $
+ * @version $Revision: 1.5 $
*/
public class WorkerQueue
{