KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsdl > rpcParams > RpcParamsBindingImpl


1 /**
2  * RpcParamsBindingImpl.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis WSDL2Java emitter.
6  */

7
8 package test.wsdl.rpcParams;
9
10 public class RpcParamsBindingImpl implements RpcParamsTest {
11     /**
12      * Just return a struct with the first and second fields
13      * filled out with the arguments.
14      */

15     public EchoStruct echo(String JavaDoc first, String JavaDoc second) {
16         final EchoStruct result = new EchoStruct();
17         result.setFirst(first);
18         result.setSecond(second);
19         return result;
20     }
21 }
22
Popular Tags