All Downloads are FREE. Search and download functionalities are using the official Maven repository.

camelinaction.order.OrderServiceImpl Maven / Gradle / Ivy


/**
 * Please modify this class to meet your needs
 * This class is not complete
 */

package camelinaction.order;

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 3.0.0
 * 2014-05-20T16:16:02.468Z
 * Generated source version: 3.0.0
 * 
 */

@javax.jws.WebService(
                      serviceName = "OrderEndpointService",
                      portName = "OrderService",
                      targetNamespace = "http://order.camelinaction",
                      wsdlLocation = "file:/mnt/jenkins/workspace/fabric8-release/fabric8/target/checkout/tooling/examples/camel-cxf-contract-first-example/src/main/resources/wsdl/order.wsdl",
                      endpointInterface = "camelinaction.order.OrderEndpoint")
                      
public class OrderServiceImpl implements OrderEndpoint {

    private static final Logger LOG = Logger.getLogger(OrderServiceImpl.class.getName());

    /* (non-Javadoc)
     * @see camelinaction.order.OrderEndpoint#order(java.lang.String  partName ,)int  amount ,)java.lang.String  customerName )*
     */
    public java.lang.String order(java.lang.String partName,int amount,java.lang.String customerName) { 
        LOG.info("Executing operation order");
        System.out.println(partName);
        System.out.println(amount);
        System.out.println(customerName);
        try {
            java.lang.String _return = "";
            return _return;
        } catch (java.lang.Exception ex) {
            ex.printStackTrace();
            throw new RuntimeException(ex);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy