package com.mes.dasEquipmentConnectionDataService;
|
|
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 Apache CXF 3.3.4
|
* 2020-09-16T17:42:46.109+08:00
|
* Generated source version: 3.3.4
|
*
|
*/
|
@WebService(targetNamespace = "http://das.service.eihub.rockwell.com/", name = "IEquipmentConn")
|
@XmlSeeAlso({ObjectFactory.class})
|
public interface IEquipmentConn {
|
|
@WebMethod
|
@RequestWrapper(localName = "receiveDasEquipmentConnection", targetNamespace = "http://das.service.eihub.rockwell.com/", className = "com.mes.dasEquipmentConnectionDataService.ReceiveDasEquipmentConnection")
|
@ResponseWrapper(localName = "receiveDasEquipmentConnectionResponse", targetNamespace = "http://das.service.eihub.rockwell.com/", className = "com.mes.dasEquipmentConnectionDataService.ReceiveDasEquipmentConnectionResponse")
|
@WebResult(name = "return", targetNamespace = "")
|
public String receiveDasEquipmentConnection(
|
|
@WebParam(name = "EquipmentConnection", targetNamespace = "")
|
String equipmentConnection
|
);
|
}
|