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

camelinaction.order.OrderEndpoint Maven / Gradle / Ivy

package camelinaction.order;

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.7.0.redhat-610376
 * 2014-04-09T09:44:33.534Z
 * Generated source version: 2.7.0.redhat-610376
 * 
 */
@WebService(targetNamespace = "http://order.camelinaction", name = "OrderEndpoint")
@XmlSeeAlso({ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface OrderEndpoint {

    @WebResult(name = "resultCode", targetNamespace = "http://order.camelinaction", partName = "resultCode")
    @WebMethod(action = "http://order.camelinaction/Order")
    public java.lang.String order(
        @WebParam(partName = "partName", name = "partName", targetNamespace = "http://order.camelinaction")
        java.lang.String partName,
        @WebParam(partName = "amount", name = "amount", targetNamespace = "http://order.camelinaction")
        int amount,
        @WebParam(partName = "customerName", name = "customerName", targetNamespace = "http://order.camelinaction")
        java.lang.String customerName
    );
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy