User: starksm
Date: 01/11/25 19:24:53
Modified: jetty/src/main/org/jboss/jetty Jetty.java JettyService.java
JettyServiceMBean.java
Log:
Drop the org.jboss.ejb.DeploymentException in favor of the
org.jboss.deployment.DeploymentException class.
Use the org.jboss.logging.Logger.getLogger factory method.
Revision Changes Path
1.21 +2 -2 contrib/jetty/src/main/org/jboss/jetty/Jetty.java
Index: Jetty.java
===================================================================
RCS file: /cvsroot/jboss/contrib/jetty/src/main/org/jboss/jetty/Jetty.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- Jetty.java 2001/11/25 14:52:49 1.20
+++ Jetty.java 2001/11/26 03:24:53 1.21
@@ -5,7 +5,7 @@
* See terms of license at gnu.org.
*/
-// $Id: Jetty.java,v 1.20 2001/11/25 14:52:49 jules_gosnell Exp $
+// $Id: Jetty.java,v 1.21 2001/11/26 03:24:53 starksm Exp $
// A Jetty HttpServer with the interface expected by JBoss'
// J2EEDeployer...
@@ -18,7 +18,7 @@
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.apache.log4j.Category;
-import org.jboss.ejb.DeploymentException;
+import org.jboss.deployment.DeploymentException;
import org.jboss.web.AbstractWebContainer.WebDescriptorParser;
import org.jboss.web.WebApplication;
import org.mortbay.http.HttpHandler;
1.30 +4 -4 contrib/jetty/src/main/org/jboss/jetty/JettyService.java
Index: JettyService.java
===================================================================
RCS file: /cvsroot/jboss/contrib/jetty/src/main/org/jboss/jetty/JettyService.java,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- JettyService.java 2001/11/25 16:02:00 1.29
+++ JettyService.java 2001/11/26 03:24:53 1.30
@@ -5,7 +5,7 @@
* See terms of license at gnu.org.
*/
-// $Id: JettyService.java,v 1.29 2001/11/25 16:02:00 jules_gosnell Exp $
+// $Id: JettyService.java,v 1.30 2001/11/26 03:24:53 starksm Exp $
package org.jboss.jetty;
@@ -20,7 +20,7 @@
import javax.management.MBeanServer;
import javax.management.ObjectName;
import org.apache.log4j.Category;
-import org.jboss.ejb.DeploymentException;
+import org.jboss.deployment.DeploymentException;
import org.jboss.system.ServiceMBeanSupport;
import org.jboss.web.AbstractWebContainer.WebDescriptorParser;
import org.jboss.web.AbstractWebContainer;
@@ -37,7 +37,7 @@
*
* @see <related>
* @author <a href="mailto:[EMAIL PROTECTED]">Julian Gosnell</a>
- * @version $Revision: 1.29 $
+ * @version $Revision: 1.30 $
*/
// NOTES
@@ -80,7 +80,7 @@
public static final String NAME = "Jetty";
- Category _log =
Category.getInstance(super.category.getName()+"."+getName());
+ Category _log = Category.getInstance(getClass().getName());
DebugMBean _debug = null;
JettyMBean _mbean = null;
Jetty _jetty = null;
1.9 +3 -3 contrib/jetty/src/main/org/jboss/jetty/JettyServiceMBean.java
Index: JettyServiceMBean.java
===================================================================
RCS file:
/cvsroot/jboss/contrib/jetty/src/main/org/jboss/jetty/JettyServiceMBean.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- JettyServiceMBean.java 2001/09/16 17:14:17 1.8
+++ JettyServiceMBean.java 2001/11/26 03:24:53 1.9
@@ -5,18 +5,18 @@
* See terms of license at gnu.org.
*/
-// $Id: JettyServiceMBean.java,v 1.8 2001/09/16 17:14:17 jules_gosnell Exp $
+// $Id: JettyServiceMBean.java,v 1.9 2001/11/26 03:24:53 starksm Exp $
package org.jboss.jetty;
-import org.jboss.ejb.DeploymentException;
+import org.jboss.deployment.DeploymentException;
/**
* <description>
*
* @see <related>
* @author <a href="mailto:[EMAIL PROTECTED]">Sebastien Alborini</a>
- * @version $Revision: 1.8 $
+ * @version $Revision: 1.9 $
*/
public interface JettyServiceMBean
extends org.jboss.web.AbstractWebContainerMBean
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development