org.ow2.frascati.examples.sales.Stock Maven / Gradle / Ivy
package org.ow2.frascati.examples.sales;
import javax.jws.Oneway;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 2.2.9
* Fri Aug 20 13:09:18 CEST 2010
* Generated source version: 2.2.9
*
*/
@WebService(targetNamespace = "http://frascati.ow2.org/examples/sales", name = "stock")
@XmlSeeAlso({ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface Stock {
@Oneway
@WebMethod(action = "initiate")
public void initiate(
@WebParam(partName = "payload", name = "stockRequest", targetNamespace = "http://frascati.ow2.org/examples/sales")
StockRequest payload
);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy