summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestWebService.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/TestWebService.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/TestWebService.java')
-rw-r--r--sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestWebService.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestWebService.java b/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestWebService.java
index 6ec23d9cb0..0f61efbbbc 100644
--- a/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestWebService.java
+++ b/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestWebService.java
@@ -22,6 +22,7 @@ import java.util.List;
import java.util.Map;
import javax.jws.WebMethod;
import javax.jws.WebService;
+import jtest.other.TestOther;
@WebService
public interface TestWebService {
@@ -33,13 +34,16 @@ public interface TestWebService {
String sendConcrete(TestConcrete1 testData);
@WebMethod
+ void sendOtherPackage(TestOther testData);
+
+ @WebMethod
void throwAbstract() throws AbstractException;
@WebMethod
void sendList(List<String> data);
- @WebMethod
- Map<String, String> returnMap();
+ //@WebMethod
+ //Map<String, String> returnMap();
@WebMethod
void sendWildcardExtends(Bean1<Bean2> arg);