summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/impl/TestWebServiceImpl.java
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2011-06-09 09:58:11 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2011-06-09 09:58:11 +0000
commit051cc5a4b4076997335312b016c0326d0935f9b3 (patch)
treea969ee9dd5bbc1299cee258e76f5b781ed079b72 /sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/impl/TestWebServiceImpl.java
parentd9e0a73826902ae27d9757427b56a90276878e4c (diff)
TUSCANY-3869: Add tests to 1.x for POJO type in different package than the interface
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1133760 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/impl/TestWebServiceImpl.java')
-rw-r--r--sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/impl/TestWebServiceImpl.java11
1 files changed, 8 insertions, 3 deletions
diff --git a/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/impl/TestWebServiceImpl.java b/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/impl/TestWebServiceImpl.java
index eb089e8be1..c510163009 100644
--- a/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/impl/TestWebServiceImpl.java
+++ b/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/impl/TestWebServiceImpl.java
@@ -28,6 +28,7 @@ import jtest.Bean2;
import jtest.ConcreteException;
import jtest.TestAbstract;
import jtest.TestConcrete1;
+import jtest.other.TestOther;
import jtest.TestWebService;
@WebService(endpointInterface = "jtest.TestWebService")
@@ -42,6 +43,10 @@ public class TestWebServiceImpl implements TestWebService {
return "Hi!";
}
+ public void sendOtherPackage(TestOther testData) {
+ System.out.println(testData.getGreeting());
+ }
+
public void throwAbstract() throws AbstractException {
throw new ConcreteException();
}
@@ -50,9 +55,9 @@ public class TestWebServiceImpl implements TestWebService {
System.out.println(data.get(0) + " " + data.get(1));
}
- public Map<String, String> returnMap() {
- return null;
- }
+ //public Map<String, String> returnMap() {
+ // return null;
+ //}
public void sendWildcardExtends(Bean1<Bean2> arg) {
System.out.println(arg);