From b3243c64346cda94f30f9c7ab6a25b32a666e09c Mon Sep 17 00:00:00 2001 From: lresende Date: Fri, 9 Jul 2010 02:22:14 +0000 Subject: TUSCANY-3617 - Adding support for configuring wireFormat only for response to allow RPC over GET services to define the wireFormat to use for generating the response payload. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@962390 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/test/java/services/echo/Echo.java | 12 +++++------- .../src/test/java/services/echo/EchoImpl.java | 17 ++++++----------- 2 files changed, 11 insertions(+), 18 deletions(-) (limited to 'sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/echo') diff --git a/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/echo/Echo.java b/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/echo/Echo.java index ca5d73246a..8664162ffb 100644 --- a/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/echo/Echo.java +++ b/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/echo/Echo.java @@ -6,15 +6,15 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations - * under the License. + * under the License. */ package services.echo; @@ -24,7 +24,7 @@ import org.oasisopen.sca.annotation.Remotable; /** * Interface of our sample JSONRPC service. - * + * * @version $Rev$ $Date$ */ @Remotable @@ -32,9 +32,7 @@ public interface Echo { String echo(@QueryParam("msg") String msg); - int echoInt(int param); - - boolean echoBoolean(boolean param); + int echoInt(@QueryParam("param") int param); String [] echoArrayString(@QueryParam("msgArray") String[] stringArray); diff --git a/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/echo/EchoImpl.java b/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/echo/EchoImpl.java index 2596637ce8..6bc22bd41a 100644 --- a/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/echo/EchoImpl.java +++ b/sca-java-2.x/trunk/modules/binding-rest-runtime/src/test/java/services/echo/EchoImpl.java @@ -6,27 +6,27 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations - * under the License. + * under the License. */ package services.echo; /** * A simple client component that uses a reference with an JSONRPC binding. - * + * * @version $Rev$ $Date$ */ -public class EchoImpl implements Echo { +public class EchoImpl implements Echo { - public String echo(String msg) { + public String echo(String msg) { return msg; } @@ -35,11 +35,6 @@ public class EchoImpl implements Echo { return value; } - public boolean echoBoolean(boolean param) { - boolean value = param; - return value; - } - public String[] echoArrayString(String[] stringArray) { return stringArray; } -- cgit v1.2.3