41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
|
|
package th.co.muangthai.endrprint.wfurlxml;
|
|
|
|
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;
|
|
|
|
|
|
/**
|
|
* This class was generated by the JAX-WS RI.
|
|
* JAX-WS RI 2.1.6 in JDK 6
|
|
* Generated source version: 2.1
|
|
*
|
|
*/
|
|
@WebService(name = "MTLGetUrlWS", targetNamespace = "http://wf108.edas.scc.com/")
|
|
@XmlSeeAlso({
|
|
ObjectFactory.class
|
|
})
|
|
public interface MTLGetUrlWS {
|
|
|
|
|
|
/**
|
|
*
|
|
* @param imageDocument
|
|
* @return
|
|
* returns th.co.muangthai.endrprint.wfurlxml.ResponseMessage
|
|
*/
|
|
@WebMethod
|
|
@WebResult(targetNamespace = "")
|
|
@RequestWrapper(localName = "getUrl", targetNamespace = "http://wf108.edas.scc.com/", className = "th.co.muangthai.endrprint.wfurlxml.GetUrl")
|
|
@ResponseWrapper(localName = "getUrlResponse", targetNamespace = "http://wf108.edas.scc.com/", className = "th.co.muangthai.endrprint.wfurlxml.GetUrlResponse")
|
|
public ResponseMessage getUrl(
|
|
@WebParam(name = "imageDocument", targetNamespace = "")
|
|
RequestMessage imageDocument);
|
|
|
|
}
|