You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2005/12/21 04:48:45 UTC

svn commit: r358198 - in /webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2: databinding/utils/BeanUtil.java wsdl/codegen/Constants.java wsdl/template/java/LocalTestClassTemplate.xsl

Author: dims
Date: Tue Dec 20 19:48:41 2005
New Revision: 358198

URL: http://svn.apache.org/viewcvs?rev=358198&view=rev
Log:
remove a tiny class


Removed:
    webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/codegen/Constants.java
Modified:
    webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/databinding/utils/BeanUtil.java
    webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/LocalTestClassTemplate.xsl

Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/databinding/utils/BeanUtil.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/databinding/utils/BeanUtil.java?rev=358198&r1=358197&r2=358198&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/databinding/utils/BeanUtil.java (original)
+++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/databinding/utils/BeanUtil.java Tue Dec 20 19:48:41 2005
@@ -18,7 +18,6 @@
 
 
 import org.apache.axis2.AxisFault;
-import org.apache.axis2.databinding.utils.ADBPullParser;
 import org.apache.axis2.databinding.typemapping.SimpleTypeMapper;
 import org.apache.axis2.om.OMAbstractFactory;
 import org.apache.axis2.om.OMAttribute;

Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/LocalTestClassTemplate.xsl
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/LocalTestClassTemplate.xsl?rev=358198&r1=358197&r2=358198&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/LocalTestClassTemplate.xsl (original)
+++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/LocalTestClassTemplate.xsl Tue Dec 20 19:48:41 2005
@@ -27,7 +27,6 @@
 	import org.apache.axis2.deployment.DeploymentEngine;
 	import org.apache.axis2.description.AxisService;
 	import org.apache.axis2.engine.AxisConfiguration;
-	import org.apache.axis2.wsdl.codegen.Constants;
 	import org.apache.axis2.om.OMAbstractFactory;
 	import org.apache.axis2.om.OMElement;
 	import org.apache.axis2.om.OMFactory;
@@ -44,6 +43,7 @@
     
     private static int count = 0;
 	private static SimpleHTTPServer server;
+    private static int TEST_PORT = 5555;
 	
 	public void setUp() throws Exception {
 		if (count == 0) {
@@ -62,7 +62,7 @@
 			ConfigurationContext configurationContext = new ConfigurationContext(
 					axisConfig);
 			ServerSocket serverSoc = null;
-			serverSoc = new ServerSocket(Constants.TEST_PORT);
+			serverSoc = new ServerSocket(TEST_PORT);
 			server = new SimpleHTTPServer(
 					configurationContext, serverSoc);
 			Thread thread = new Thread(server);
@@ -71,7 +71,7 @@
 			try {
 				thread.start();
 				System.out.print("Server started on port "
-						+ Constants.TEST_PORT + ".....");
+						+ TEST_PORT + ".....");
 			} finally {
 
 			}