package com.mes.dasEquipmentService; 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-12-04T10:26:11.004+08:00 * Generated source version: 3.3.4 * */ @WebServiceClient(name = "IEquipmentService", wsdlLocation = "http://10.39.186.37:8081/GYEIHUB/dasEquipmentService?wsdl", targetNamespace = "http://das.service.eihub.rockwell.com/") public class IEquipmentService extends Service { public final static URL WSDL_LOCATION; public final static QName SERVICE = new QName("http://das.service.eihub.rockwell.com/", "IEquipmentService"); public final static QName IEquipmentPort = new QName("http://das.service.eihub.rockwell.com/", "IEquipmentPort"); static { URL url = null; try { url = new URL("http://10.39.186.37:8081/GYEIHUB/dasEquipmentService?wsdl"); } catch (MalformedURLException e) { java.util.logging.Logger.getLogger(IEquipmentService.class.getName()) .log(java.util.logging.Level.INFO, "Can not initialize the default wsdl from {0}", "http://10.39.186.37:8081/GYEIHUB/dasEquipmentService?wsdl"); } WSDL_LOCATION = url; } public IEquipmentService(URL wsdlLocation) { super(wsdlLocation, SERVICE); } public IEquipmentService(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public IEquipmentService() { super(WSDL_LOCATION, SERVICE); } public IEquipmentService(WebServiceFeature ... features) { super(WSDL_LOCATION, SERVICE, features); } public IEquipmentService(URL wsdlLocation, WebServiceFeature ... features) { super(wsdlLocation, SERVICE, features); } public IEquipmentService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { super(wsdlLocation, serviceName, features); } /** * * @return * returns IEquipment */ @WebEndpoint(name = "IEquipmentPort") public IEquipment getIEquipmentPort() { return super.getPort(IEquipmentPort, IEquipment.class); } /** * * @param features * A list of {@link WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. * @return * returns IEquipment */ @WebEndpoint(name = "IEquipmentPort") public IEquipment getIEquipmentPort(WebServiceFeature... features) { return super.getPort(IEquipmentPort, IEquipment.class, features); } }