package com.chinaztt.mes.common.gsm.out; 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 = "OutStorageServiceSoap", targetNamespace = "http://tempuri.org/") @XmlSeeAlso({ ObjectFactory.class }) public interface OutStorageServiceSoap { /** * * @param outStorageSingleAddModel * @return * returns java.lang.String */ @WebMethod(operationName = "SingleAdd", action = "http://tempuri.org/SingleAdd") @WebResult(name = "SingleAddResult", targetNamespace = "http://tempuri.org/") @RequestWrapper(localName = "SingleAdd", targetNamespace = "http://tempuri.org/", className = "GSM.out.SingleAdd") @ResponseWrapper(localName = "SingleAddResponse", targetNamespace = "http://tempuri.org/", className = "GSM.out.SingleAddResponse") public String singleAdd( @WebParam(name = "OutStorageSingleAddModel", targetNamespace = "http://tempuri.org/") OutStorageSingleAddModel outStorageSingleAddModel); /** * * @param outStorageListAddModel * @return * returns java.lang.String */ @WebMethod(operationName = "ListAdd", action = "http://tempuri.org/ListAdd") @WebResult(name = "ListAddResult", targetNamespace = "http://tempuri.org/") @RequestWrapper(localName = "ListAdd", targetNamespace = "http://tempuri.org/", className = "GSM.out.ListAdd") @ResponseWrapper(localName = "ListAddResponse", targetNamespace = "http://tempuri.org/", className = "GSM.out.ListAddResponse") public String listAdd( @WebParam(name = "OutStorageListAddModel", targetNamespace = "http://tempuri.org/") OutStorageListAddModel outStorageListAddModel); /** * * @param outStorageSingleDeleteModel * @return * returns java.lang.String */ @WebMethod(operationName = "SingleDelete", action = "http://tempuri.org/SingleDelete") @WebResult(name = "SingleDeleteResult", targetNamespace = "http://tempuri.org/") @RequestWrapper(localName = "SingleDelete", targetNamespace = "http://tempuri.org/", className = "GSM.out.SingleDelete") @ResponseWrapper(localName = "SingleDeleteResponse", targetNamespace = "http://tempuri.org/", className = "GSM.out.SingleDeleteResponse") public String singleDelete( @WebParam(name = "OutStorageSingleDeleteModel", targetNamespace = "http://tempuri.org/") OutStorageSingleDeleteModel outStorageSingleDeleteModel); }