Package echo.wrapped

Examples of echo.wrapped.EchoResponse


    implements EchoPortType
{

    public EchoResponse echo(Echo echo, Echo echo2, Holder<EchoResponse> echoResponse, Holder<EchoResponse> echoResponse2)
    {
        EchoResponse response = new EchoResponse();
        response.setText(echo.getText());
       
        EchoResponse response2 = new EchoResponse();
        response2.setText(echo2.getText());
       
        echoResponse.value = response;
        echoResponse2.value = response2;
       
        return response;
View Full Code Here

TOP

Related Classes of echo.wrapped.EchoResponse

Copyright © 2018 www.massapicom. 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.