You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by di...@apache.org on 2004/10/09 00:28:17 UTC

svn commit: rev 54120 - in geronimo/trunk/modules/axis/src: java/org/apache/geronimo/axis test/org/apache/geronimo/axis

Author: dims
Date: Fri Oct  8 15:28:15 2004
New Revision: 54120

Removed:
   geronimo/trunk/modules/axis/src/java/org/apache/geronimo/axis/DependancyEJBManager.java
   geronimo/trunk/modules/axis/src/java/org/apache/geronimo/axis/WebServiceContainer.java
Modified:
   geronimo/trunk/modules/axis/src/test/org/apache/geronimo/axis/JettyServiceWrapper.java
Log:
Delete obsolete code, fix compile failure


Modified: geronimo/trunk/modules/axis/src/test/org/apache/geronimo/axis/JettyServiceWrapper.java
==============================================================================
--- geronimo/trunk/modules/axis/src/test/org/apache/geronimo/axis/JettyServiceWrapper.java	(original)
+++ geronimo/trunk/modules/axis/src/test/org/apache/geronimo/axis/JettyServiceWrapper.java	Fri Oct  8 15:28:15 2004
@@ -16,14 +16,6 @@
 
 package org.apache.geronimo.axis;
 
-import java.util.Collections;
-import java.util.HashSet;
-import java.util.Set;
-
-import javax.management.MBeanServer;
-import javax.management.MalformedObjectNameException;
-import javax.management.ObjectName;
-
 import org.apache.geronimo.connector.outbound.connectiontracking.ConnectionTrackingCoordinator;
 import org.apache.geronimo.gbean.jmx.GBeanMBean;
 import org.apache.geronimo.jetty.JettyContainerImpl;
@@ -32,6 +24,12 @@
 import org.apache.geronimo.transaction.GeronimoTransactionManager;
 import org.apache.geronimo.transaction.context.TransactionContextManager;
 
+import javax.management.MBeanServer;
+import javax.management.ObjectName;
+import java.util.Collections;
+import java.util.HashSet;
+import java.util.Set;
+
 /**
  * <p>This class wrap the Jetty service, This is a test utility only</p>
  */
@@ -45,15 +43,15 @@
 	
 	private final MBeanServer mbServer;
 	
-	public JettyServiceWrapper(Kernel kernel)throws MalformedObjectNameException{
+	public JettyServiceWrapper(Kernel kernel) {
             this.mbServer = kernel.getMBeanServer();
             
-            containerName = new ObjectName(AxisGeronimoConstants.WEB_CONTANER_NAME);
+            containerName = AxisGeronimoConstants.WEB_CONTAINER_NAME;
             containerPatterns = Collections.singleton(containerName);
-            connectorName = new ObjectName(AxisGeronimoConstants.WEB_CONNECTOR_NAME);
-            tmName = new ObjectName(AxisGeronimoConstants.TRANSACTION_MANAGER_NAME);
-            tcaName = new ObjectName(AxisGeronimoConstants.CONNTECTION_TRACKING_COORDINATOR);
-            tcmName = new ObjectName(AxisGeronimoConstants.TRANSACTION_CONTEXT_MANAGER_NAME);    
+            connectorName = AxisGeronimoConstants.WEB_CONNECTOR_NAME;
+            tmName = AxisGeronimoConstants.TRANSACTION_MANAGER_NAME;
+            tcaName = AxisGeronimoConstants.CONNTECTION_TRACKING_COORDINATOR;
+            tcmName = AxisGeronimoConstants.TRANSACTION_CONTEXT_MANAGER_NAME;    
 	}
 
 	public void doStart() throws Exception {