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;
}