summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/customer/CustomerService.java
diff options
context:
space:
mode:
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);