org.copperengine.orchestration.OrchestrationServiceImpl 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.orchestration;
import java.util.logging.Logger;
import javax.jws.WebMethod;
import javax.jws.WebParam;
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 Apache CXF 2.6.0
* 2014-01-08T11:53:50.005+01:00
* Generated source version: 2.6.0
*
*/
@javax.jws.WebService(
serviceName = "OrchestrationService",
portName = "OrchestrationServicePort",
targetNamespace = "http://orchestration.copperengine.org/",
wsdlLocation = "classpath:wsdl/OrchestrationEngine.wsdl",
endpointInterface = "org.copperengine.orchestration.OrchestrationService")
public class OrchestrationServiceImpl implements OrchestrationService {
private static final Logger LOG = Logger.getLogger(OrchestrationServiceImpl.class.getName());
/* (non-Javadoc)
* @see org.copperengine.orchestration.OrchestrationService#resetMailbox(java.lang.String msisdn ,)java.lang.String secret )*
*/
public void resetMailbox(java.lang.String msisdn,java.lang.String secret) {
LOG.info("Executing operation resetMailbox");
System.out.println(msisdn);
System.out.println(secret);
try {
} catch (java.lang.Exception ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy