org.copperengine.customerservice.CustomerService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orch-interfaces Show documentation
Show all versions of orch-interfaces Show documentation
COPPER is an open-source, powerful, light-weight, and easily configurable workflow engine. The power of COPPER is that it uses Java as a description language for workflows.
package org.copperengine.customerservice;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 2.6.0
* 2014-01-10T20:47:29.939+01:00
* Generated source version: 2.6.0
*
*/
@WebService(targetNamespace = "http://customerservice.copperengine.org/", name = "CustomerService")
@XmlSeeAlso({ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface CustomerService {
@WebResult(name = "getCustomersByMsisdnResponse", targetNamespace = "http://customerservice.copperengine.org/", partName = "parameters")
@WebMethod(action = "http://customerservice.copperengine.org/getCustomersByMsisdn")
public GetCustomersByMsisdnResponse getCustomersByMsisdn(
@WebParam(partName = "parameters", name = "getCustomersByMsisdnRequest", targetNamespace = "http://customerservice.copperengine.org/")
GetCustomersByMsisdnRequest parameters
);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy