org.apache.camel.cxf.mtom_feature.Hello Maven / Gradle / Ivy
package org.apache.camel.cxf.mtom_feature;
import javax.annotation.Generated;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
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.1
* 2012-06-27T19:01:29.337-04:00
* Generated source version: 2.6.1
*
*/
@WebService(targetNamespace = "http://apache.org/camel/cxf/mtom_feature", name = "Hello")
@XmlSeeAlso({org.apache.camel.cxf.mtom_feature.types.ObjectFactory.class})
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2012-06-27T19:01:29.337-04:00", comments = "Apache CXF 2.6.1")
public interface Hello {
@RequestWrapper(localName = "Detail", targetNamespace = "http://apache.org/camel/cxf/mtom_feature/types", className = "org.apache.camel.cxf.mtom_feature.types.DetailType")
@WebMethod(operationName = "Detail", action = "DetailAction")
@ResponseWrapper(localName = "DetailResponse", targetNamespace = "http://apache.org/camel/cxf/mtom_feature/types", className = "org.apache.camel.cxf.mtom_feature.types.DetailType")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2012-06-27T19:01:29.337-04:00")
public void detail(
@WebParam(mode = WebParam.Mode.INOUT, name = "photo", targetNamespace = "http://apache.org/camel/cxf/mtom_feature/types")
javax.xml.ws.Holder photo,
@WebParam(mode = WebParam.Mode.INOUT, name = "image", targetNamespace = "http://apache.org/camel/cxf/mtom_feature/types")
javax.xml.ws.Holder image
);
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
@WebMethod(action = "echoDataAction")
@Generated(value = "org.apache.cxf.tools.wsdlto.WSDLToJava", date = "2012-06-27T19:01:29.337-04:00")
public void echoData(
@WebParam(partName = "data", mode = WebParam.Mode.INOUT, name = "data", targetNamespace = "http://apache.org/camel/cxf/mtom_feature/types")
javax.xml.ws.Holder data
);
}