package com.mes.dasEquipmentConnectionDataService;
|
|
import java.net.MalformedURLException;
|
import java.net.URL;
|
import javax.xml.namespace.QName;
|
import javax.xml.ws.WebEndpoint;
|
import javax.xml.ws.WebServiceClient;
|
import javax.xml.ws.WebServiceFeature;
|
import javax.xml.ws.Service;
|
|
/**
|
* This class was generated by Apache CXF 3.3.4
|
* 2020-09-16T17:42:46.146+08:00
|
* Generated source version: 3.3.4
|
*
|
*/
|
@WebServiceClient(name = "IEquipmentConnService",
|
wsdlLocation = "http://10.39.186.37:8081/GYEIHUB/dasEquipmentConnectionDataService?wsdl",
|
targetNamespace = "http://das.service.eihub.rockwell.com/")
|
public class IEquipmentConnService extends Service {
|
|
public final static URL WSDL_LOCATION;
|
|
public final static QName SERVICE = new QName("http://das.service.eihub.rockwell.com/", "IEquipmentConnService");
|
public final static QName IEquipmentConnPort = new QName("http://das.service.eihub.rockwell.com/", "IEquipmentConnPort");
|
static {
|
URL url = null;
|
try {
|
url = new URL("http://10.39.186.37:8081/GYEIHUB/dasEquipmentConnectionDataService?wsdl");
|
} catch (MalformedURLException e) {
|
java.util.logging.Logger.getLogger(IEquipmentConnService.class.getName())
|
.log(java.util.logging.Level.INFO,
|
"Can not initialize the default wsdl from {0}", "http://10.39.186.37:8081/GYEIHUB/dasEquipmentConnectionDataService?wsdl");
|
}
|
WSDL_LOCATION = url;
|
}
|
|
public IEquipmentConnService(URL wsdlLocation) {
|
super(wsdlLocation, SERVICE);
|
}
|
|
public IEquipmentConnService(URL wsdlLocation, QName serviceName) {
|
super(wsdlLocation, serviceName);
|
}
|
|
public IEquipmentConnService() {
|
super(WSDL_LOCATION, SERVICE);
|
}
|
|
public IEquipmentConnService(WebServiceFeature ... features) {
|
super(WSDL_LOCATION, SERVICE, features);
|
}
|
|
public IEquipmentConnService(URL wsdlLocation, WebServiceFeature ... features) {
|
super(wsdlLocation, SERVICE, features);
|
}
|
|
public IEquipmentConnService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
|
super(wsdlLocation, serviceName, features);
|
}
|
|
|
|
|
/**
|
*
|
* @return
|
* returns IEquipmentConn
|
*/
|
@WebEndpoint(name = "IEquipmentConnPort")
|
public IEquipmentConn getIEquipmentConnPort() {
|
return super.getPort(IEquipmentConnPort, IEquipmentConn.class);
|
}
|
|
/**
|
*
|
* @param features
|
* A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
|
* @return
|
* returns IEquipmentConn
|
*/
|
@WebEndpoint(name = "IEquipmentConnPort")
|
public IEquipmentConn getIEquipmentConnPort(WebServiceFeature... features) {
|
return super.getPort(IEquipmentConnPort, IEquipmentConn.class, features);
|
}
|
|
}
|