IWSAdapter.java 1.2 KB

package StSys.RoyoTech.client;

import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;


/**
 * This class was generated by the JAX-WS RI.
 * JAX-WS RI 2.2.9-b130926.1035
 * Generated source version: 2.2
 * 
 */
@WebService(name = "IWSAdapter", targetNamespace = "http://tempuri.org/")
@XmlSeeAlso({
    ObjectFactory.class
})
public interface IWSAdapter {


    /**
     * 
     * @param xmlString
     * @return
     *     returns java.lang.String
     */
    @WebMethod(operationName = "AdapterCommand", action = "http://tempuri.org/IWSAdapter/AdapterCommand")
    @WebResult(name = "AdapterCommandResult", targetNamespace = "http://tempuri.org/")
    @RequestWrapper(localName = "AdapterCommand", targetNamespace = "http://tempuri.org/", className = "StSys.RoyoTech.client.AdapterCommand")
    @ResponseWrapper(localName = "AdapterCommandResponse", targetNamespace = "http://tempuri.org/", className = "StSys.RoyoTech.client.AdapterCommandResponse")
    public String adapterCommand(
        @WebParam(name = "xmlString", targetNamespace = "http://tempuri.org/")
        String xmlString);

}