IWSAdapter.java
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package StSys.RoyoTech.client;
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.2.9-b130926.1035
* Generated source version: 2.2
*
*/
@WebService(name = "IWSAdapter", targetNamespace = "http://tempuri.org/")
@XmlSeeAlso({
ObjectFactory.class
})
public interface IWSAdapter {
/**
*
* @param xmlString
* @return
* returns java.lang.String
*/
@WebMethod(operationName = "AdapterCommand", action = "http://tempuri.org/IWSAdapter/AdapterCommand")
@WebResult(name = "AdapterCommandResult", targetNamespace = "http://tempuri.org/")
@RequestWrapper(localName = "AdapterCommand", targetNamespace = "http://tempuri.org/", className = "StSys.RoyoTech.client.AdapterCommand")
@ResponseWrapper(localName = "AdapterCommandResponse", targetNamespace = "http://tempuri.org/", className = "StSys.RoyoTech.client.AdapterCommandResponse")
public String adapterCommand(
@WebParam(name = "xmlString", targetNamespace = "http://tempuri.org/")
String xmlString);
}