FileDocCategorySizeDatePackage
RpcParamsBindingImpl.javaAPI DocApache Axis 1.4538Sat Apr 22 18:57:26 BST 2006test.wsdl.rpcParams

RpcParamsBindingImpl

public class RpcParamsBindingImpl extends Object implements RpcParamsTest
RpcParamsBindingImpl.java This file was auto-generated from WSDL by the Apache Axis WSDL2Java emitter.

Fields Summary
Constructors Summary
Methods Summary
public EchoStructecho(java.lang.String first, java.lang.String second)
Just return a struct with the first and second fields filled out with the arguments.

        final EchoStruct result = new EchoStruct();
        result.setFirst(first);
        result.setSecond(second);
        return result;