package com.mes.dasOrderStatusChangeDataService; 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-04-24T10:00:38.457+08:00 * Generated source version: 3.3.4 * */ @WebServiceClient(name = "IOrderStatusChangeService", wsdlLocation = "http://10.39.186.37:8081/GYEIHUB/dasOrderStatusChangeDataService?wsdl", targetNamespace = "http://das.service.eihub.rockwell.com/") public class IOrderStatusChangeService extends Service { public final static URL WSDL_LOCATION; public final static QName SERVICE = new QName("http://das.service.eihub.rockwell.com/", "IOrderStatusChangeService"); public final static QName IOrderStatusChangePort = new QName("http://das.service.eihub.rockwell.com/", "IOrderStatusChangePort"); static { URL url = null; try { url = new URL("http://10.39.186.37:8081/GYEIHUB/dasOrderStatusChangeDataService?wsdl"); } catch (MalformedURLException e) { java.util.logging.Logger.getLogger(IOrderStatusChangeService.class.getName()) .log(java.util.logging.Level.INFO, "Can not initialize the default wsdl from {0}", "http://10.39.186.37:8081/GYEIHUB/dasOrderStatusChangeDataService?wsdl"); } WSDL_LOCATION = url; } public IOrderStatusChangeService(URL wsdlLocation) { super(wsdlLocation, SERVICE); } public IOrderStatusChangeService(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public IOrderStatusChangeService() { super(WSDL_LOCATION, SERVICE); } public IOrderStatusChangeService(WebServiceFeature ... features) { super(WSDL_LOCATION, SERVICE, features); } public IOrderStatusChangeService(URL wsdlLocation, WebServiceFeature ... features) { super(wsdlLocation, SERVICE, features); } public IOrderStatusChangeService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { super(wsdlLocation, serviceName, features); } /** * * @return * returns IOrderStatusChange */ @WebEndpoint(name = "IOrderStatusChangePort") public IOrderStatusChange getIOrderStatusChangePort() { return super.getPort(IOrderStatusChangePort, IOrderStatusChange.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 IOrderStatusChange */ @WebEndpoint(name = "IOrderStatusChangePort") public IOrderStatusChange getIOrderStatusChangePort(WebServiceFeature... features) { return super.getPort(IOrderStatusChangePort, IOrderStatusChange.class, features); } }