Package org.apache.axis2.oasis.ping

Source Code of org.apache.axis2.oasis.ping.PingPortSkeleton

    package org.apache.axis2.oasis.ping;


     import org.apache.axis2.oasis.ping.databinding.org.xmlsoap.PingResponseDocument;
     import org.apache.axis2.oasis.ping.databinding.org.xmlsoap.PingResponse;  
     import org.apache.axis2.oasis.ping.databinding.org.xmlsoap.PingDocument;

    /**
     *  Auto generated java skeleton for the service by the Axis code generator
     */
    public class PingPortSkeleton {



        /**
         * Auto generated method signature

          * @param param0

         */
        public  PingResponseDocument Ping
                  (PingDocument param0 ){
                PingResponseDocument response = PingResponseDocument.Factory.newInstance();
            PingResponse pingRes = response.addNewPingResponse();
            pingRes.setText("Response: " + param0.getPing().getText());
            return response;
        }

    }
   
TOP

Related Classes of org.apache.axis2.oasis.ping.PingPortSkeleton

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.