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 2006/03/22 03:15:04 UTC

svn commit: r387690 - in /webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/sample/echo: ./ EchoImpl.java

Author: dims
Date: Tue Mar 21 18:15:01 2006
New Revision: 387690

URL: http://svn.apache.org/viewcvs?rev=387690&view=rev
Log:
fix ClassNotFoundException running AxisMessageTest test

Added:
    webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/sample/echo/
    webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/sample/echo/EchoImpl.java

Added: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/sample/echo/EchoImpl.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/sample/echo/EchoImpl.java?rev=387690&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/sample/echo/EchoImpl.java (added)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/sample/echo/EchoImpl.java Tue Mar 21 18:15:01 2006
@@ -0,0 +1,11 @@
+package org.apache.axis2.sample.echo;
+
+public class EchoImpl {
+	public EchoImpl(){}
+	public java.lang.String echoString(java.lang.String in) {
+		return in;
+	}
+	public java.lang.String[] echoStringArray(java.lang.String[] in) {
+		return in;
+	}
+}
\ No newline at end of file