summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/customer/CustomerService.java
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2010-06-26 00:02:37 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2010-06-26 00:02:37 +0000
commit91e796407efd625e37853545415ddcd44acb0fdc (patch)
treef97c3a59854a10ca7391b4cf7a42c4423516c910 /sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/customer/CustomerService.java
parent512a3d697d367b57d00e40ce26ad9d7d24cef996 (diff)
Use Response as the type
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@958151 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/customer/CustomerService.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/customer/CustomerService.java b/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/customer/CustomerService.java
index 9d640376e7..94ebc1e1b8 100644
--- a/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/customer/CustomerService.java
+++ b/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/customer/CustomerService.java
@@ -23,6 +23,7 @@ import javax.jws.WebResult;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
+import javax.ws.rs.core.Response;
import org.oasisopen.sca.annotation.Remotable;
@@ -33,8 +34,12 @@ public interface CustomerService {
@WebResult(name = "Customer", targetNamespace = "")
Customer get();
+ @GET
+ @WebResult(name = "Customer", targetNamespace = "")
+ Response getResponse();
+
@POST
- void addCustomer(Customer customer);
+ Response addCustomer(Customer customer);
@PUT
void updateCustomer(Customer customer);