// // Generated By:JAX-WS RI IBM 2.1.1 in JDK 6 (JAXB RI IBM JAXB 2.1.3 in JDK 1.6) // package org.apache.axis2.jaxws.sample.mtomfeature; import javax.activation.DataHandler; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.ws.RequestWrapper; import javax.xml.ws.ResponseWrapper; import org.apache.axis2.jaxws.sample.mtomfeature.ObjectFactory; @WebService(name = "ProcessDocumentDelegate", targetNamespace = "http://mtomfeature.sample.jaxws.axis2.apache.org/") @XmlSeeAlso({ ObjectFactory.class }) public interface ProcessDocumentDelegate { /** * * @param arg0 * @return * returns javax.activation.DataHandler */ @WebMethod @WebResult(targetNamespace = "") @RequestWrapper(localName = "sendPDFFile", targetNamespace = "http://mtomfeature.sample.jaxws.axis2.apache.org/", className = "org.apache.axis2.jaxws.sample.mtomfeature.SendPDFFile") @ResponseWrapper(localName = "sendPDFFileResponse", targetNamespace = "http://mtomfeature.sample.jaxws.axis2.apache.org/", className = "org.apache.axis2.jaxws.sample.mtomfeature.SendPDFFileResponse") public DataHandler sendPDFFile( @WebParam(name = "arg0", targetNamespace = "") DataHandler arg0); }