package org.jeecg.modules.wms;
|
|
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;
|
import org.jeecg.modules.wms.service.WebServiceSoap;
|
import org.springframework.stereotype.Component;
|
|
/**
|
* This class was generated by Apache CXF 3.5.5
|
* 2025-08-15T16:30:13.500+08:00
|
* Generated source version: 3.5.5
|
*
|
*/
|
@Component
|
@WebServiceClient(name = "WebService",
|
wsdlLocation = "classpath:/wsdl/WebService.asmx.wsdl",
|
targetNamespace = "http://tempuri.org/")
|
public class WMSWebService extends Service {
|
|
public final static URL WSDL_LOCATION;
|
|
public final static QName SERVICE = new QName("http://tempuri.org/", "WebService");
|
public final static QName WebServiceSoap = new QName("http://tempuri.org/", "WebServiceSoap");
|
public final static QName WebServiceSoap12 = new QName("http://tempuri.org/", "WebServiceSoap12");
|
static {
|
URL url = null;
|
try {
|
url = new URL("classpath:/wsdl/WebService.asmx.wsdl");
|
} catch (MalformedURLException e) {
|
java.util.logging.Logger.getLogger(WMSWebService.class.getName())
|
.log(java.util.logging.Level.INFO,
|
"Can not initialize the default wsdl from {0}", "classpath:/wsdl/WebService.asmx.wsdl");
|
}
|
WSDL_LOCATION = url;
|
}
|
|
public WMSWebService(URL wsdlLocation) {
|
super(wsdlLocation, SERVICE);
|
}
|
|
public WMSWebService(URL wsdlLocation, QName serviceName) {
|
super(wsdlLocation, serviceName);
|
}
|
|
public WMSWebService() {
|
super(WSDL_LOCATION, SERVICE);
|
}
|
|
public WMSWebService(WebServiceFeature ... features) {
|
super(WSDL_LOCATION, SERVICE, features);
|
}
|
|
public WMSWebService(URL wsdlLocation, WebServiceFeature ... features) {
|
super(wsdlLocation, SERVICE, features);
|
}
|
|
public WMSWebService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
|
super(wsdlLocation, serviceName, features);
|
}
|
|
|
|
|
/**
|
*
|
* @return
|
* returns WebServiceSoap
|
*/
|
@WebEndpoint(name = "WebServiceSoap")
|
public WebServiceSoap getWebServiceSoap() {
|
return super.getPort(WebServiceSoap, WebServiceSoap.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 WebServiceSoap
|
*/
|
@WebEndpoint(name = "WebServiceSoap")
|
public WebServiceSoap getWebServiceSoap(WebServiceFeature... features) {
|
return super.getPort(WebServiceSoap, WebServiceSoap.class, features);
|
}
|
|
|
/**
|
*
|
* @return
|
* returns WebServiceSoap
|
*/
|
@WebEndpoint(name = "WebServiceSoap12")
|
public WebServiceSoap getWebServiceSoap12() {
|
return super.getPort(WebServiceSoap12, WebServiceSoap.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 WebServiceSoap
|
*/
|
@WebEndpoint(name = "WebServiceSoap12")
|
public WebServiceSoap getWebServiceSoap12(WebServiceFeature... features) {
|
return super.getPort(WebServiceSoap12, WebServiceSoap.class, features);
|
}
|
|
}
|