Examples of EchoMeshInterfaceObjectsResponse


Examples of edu.indiana.extreme.wsdl.benchmark1.EchoMeshInterfaceObjectsResponse

    public edu.indiana.extreme.wsdl.benchmark1.EchoMeshInterfaceObjectsResponse echoMeshInterfaceObjects(
        edu.indiana.extreme.wsdl.benchmark1.EchoMeshInterfaceObjectsRequest input
    )
    {
        LOG.info("Executing operation echoMeshInterfaceObjects");
        EchoMeshInterfaceObjectsResponse ret = new EchoMeshInterfaceObjectsResponse();
        List<MeshInterfaceObject> output = ret.getEchoMeshInterfaceObjectReturn();
        for(MeshInterfaceObject mio :input.getInput()) {
          output.add(mio);
        }
        return ret;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.