From f67991dfc3c5a924e684b7071810dca7055d2fe6 Mon Sep 17 00:00:00 2001 From: lresende Date: Tue, 27 Apr 2010 21:43:08 +0000 Subject: Operation selector implementation that uses JAX-RS annotations to map http requests to properly annotated REST interfaces git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@938687 13f79535-47bb-0310-9956-ffa450edef68 --- .../modules/binding-rest-runtime/src/test/java/services/Catalog.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services') diff --git a/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/Catalog.java b/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/Catalog.java index b5e504fe11..d13b325395 100644 --- a/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/Catalog.java +++ b/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/Catalog.java @@ -19,9 +19,13 @@ package services; +import javax.ws.rs.GET; + import org.oasisopen.sca.annotation.Remotable; @Remotable public interface Catalog { + + @GET Item[] get(); } -- cgit v1.2.3