package com.jttech.pfcs.services.wsdl; 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.5.1 * 2023-03-06T14:24:11.908+08:00 * Generated source version: 3.5.1 * */ @WebServiceClient(name = "S080030795", wsdlLocation = "classpath:wsdl/DU93.wsdl", targetNamespace = "http://esb.spdbbiz.com/services/S080030795/wsdl") public class S080030795 extends Service { public final static URL WSDL_LOCATION; public final static QName SERVICE = new QName("http://esb.spdbbiz.com/services/S080030795/wsdl", "S080030795"); public final static QName ESBServerSoapEndpoint = new QName("http://esb.spdbbiz.com/services/S080030795/wsdl", "ESBServerSoapEndpoint"); static { URL url = null; try { url = new URL("classpath:wsdl/DU93.wsdl"); } catch (MalformedURLException e) { java.util.logging.Logger.getLogger(S080030795.class.getName()) .log(java.util.logging.Level.INFO, "Can not initialize the default wsdl from {0}", "classpath:wsdl/DU93.wsdl"); } WSDL_LOCATION = url; } public S080030795(URL wsdlLocation) { super(wsdlLocation, SERVICE); } public S080030795(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public S080030795() { super(WSDL_LOCATION, SERVICE); } public S080030795(WebServiceFeature ... features) { super(WSDL_LOCATION, SERVICE, features); } public S080030795(URL wsdlLocation, WebServiceFeature ... features) { super(wsdlLocation, SERVICE, features); } public S080030795(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) { super(wsdlLocation, serviceName, features); } /** * * @return * returns ESBServerPortType */ @WebEndpoint(name = "ESBServerSoapEndpoint") public ESBServerPortType getESBServerSoapEndpoint() { return super.getPort(ESBServerSoapEndpoint, ESBServerPortType.class); } /** * * @param features * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. * @return * returns ESBServerPortType */ @WebEndpoint(name = "ESBServerSoapEndpoint") public ESBServerPortType getESBServerSoapEndpoint(WebServiceFeature... features) { return super.getPort(ESBServerSoapEndpoint, ESBServerPortType.class, features); } }