org.copperengine.customerservice.CustomerServiceImpl 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.
/**
* Please modify this class to meet your needs
* This class is not complete
*/
package org.copperengine.customerservice;
import java.util.logging.Logger;
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.915+01:00
* Generated source version: 2.6.0
*
*/
@javax.jws.WebService(
serviceName = "CustomerServiceService",
portName = "CustomerServicePort",
targetNamespace = "http://customerservice.copperengine.org/",
wsdlLocation = "classpath:wsdl/CustomerService.wsdl",
endpointInterface = "org.copperengine.customerservice.CustomerService")
public class CustomerServiceImpl implements CustomerService {
private static final Logger LOG = Logger.getLogger(CustomerServiceImpl.class.getName());
/* (non-Javadoc)
* @see org.copperengine.customerservice.CustomerService#getCustomersByMsisdn(org.copperengine.customerservice.GetCustomersByMsisdnRequest parameters )*
*/
public org.copperengine.customerservice.GetCustomersByMsisdnResponse getCustomersByMsisdn(GetCustomersByMsisdnRequest parameters) {
LOG.info("Executing operation getCustomersByMsisdn");
System.out.println(parameters);
try {
org.copperengine.customerservice.GetCustomersByMsisdnResponse _return = null;
return _return;
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy