package com.mes.dasSPCValueService;
|
|
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
|
* 2021-10-21T15:45:13.751+08:00
|
* Generated source version: 3.3.4
|
*
|
*/
|
@WebService(targetNamespace = "http://das.service.eihub.rockwell.com/", name = "IQualityData")
|
@XmlSeeAlso({ObjectFactory.class})
|
public interface IQualityData {
|
|
@WebMethod
|
@RequestWrapper(localName = "receiveDasSPCValue", targetNamespace = "http://das.service.eihub.rockwell.com/", className = "com.mes.dasSPCValueService.ReceiveDasSPCValue")
|
@ResponseWrapper(localName = "receiveDasSPCValueResponse", targetNamespace = "http://das.service.eihub.rockwell.com/", className = "com.mes.dasSPCValueService.ReceiveDasSPCValueResponse")
|
@WebResult(name = "return", targetNamespace = "")
|
public String receiveDasSPCValue(
|
|
@WebParam(name = "qualitydata", targetNamespace = "")
|
String qualitydata
|
);
|
|
@WebMethod
|
@RequestWrapper(localName = "receivePRValue", targetNamespace = "http://das.service.eihub.rockwell.com/", className = "com.mes.dasSPCValueService.ReceivePRValue")
|
@ResponseWrapper(localName = "receivePRValueResponse", targetNamespace = "http://das.service.eihub.rockwell.com/", className = "com.mes.dasSPCValueService.ReceivePRValueResponse")
|
@WebResult(name = "return", targetNamespace = "")
|
public String receivePRValue(
|
|
@WebParam(name = "prData", targetNamespace = "")
|
String prData
|
);
|
}
|