no message
parent
76779ed9f4
commit
d8e3227d34
@ -1,87 +0,0 @@
|
||||
package testserver.wsdlserver.lvisserver;
|
||||
|
||||
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.6.2
|
||||
* 2023-10-10T14:18:10.943+09:00
|
||||
* Generated source version: 3.6.2
|
||||
*
|
||||
*/
|
||||
@WebServiceClient(name = "CarRegBasicInfoService",
|
||||
wsdlLocation = "C:/myTestFile/lvis_service.wsdl",
|
||||
targetNamespace = "componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo")
|
||||
public class CarRegBasicInfoService extends Service {
|
||||
|
||||
public final static URL WSDL_LOCATION;
|
||||
|
||||
public final static QName SERVICE = new QName("componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo", "CarRegBasicInfoService");
|
||||
public final static QName CarRegBasicInfo = new QName("componentNs:carregbasicinfo.reg.service.lvis/service.reg.CarRegBasicInfo", "CarRegBasicInfo");
|
||||
static {
|
||||
URL url = CarRegBasicInfoService.class.getResource("C:/myTestFile/lvis_service.wsdl");
|
||||
if (url == null) {
|
||||
url = CarRegBasicInfoService.class.getClassLoader().getResource("C:/myTestFile/lvis_service.wsdl");
|
||||
}
|
||||
if (url == null) {
|
||||
java.util.logging.Logger.getLogger(CarRegBasicInfoService.class.getName())
|
||||
.log(java.util.logging.Level.INFO,
|
||||
"Can not initialize the default wsdl from {0}", "C:/myTestFile/lvis_service.wsdl");
|
||||
}
|
||||
WSDL_LOCATION = url;
|
||||
}
|
||||
|
||||
public CarRegBasicInfoService(URL wsdlLocation) {
|
||||
super(wsdlLocation, SERVICE);
|
||||
}
|
||||
|
||||
public CarRegBasicInfoService(URL wsdlLocation, QName serviceName) {
|
||||
super(wsdlLocation, serviceName);
|
||||
}
|
||||
|
||||
public CarRegBasicInfoService() {
|
||||
super(WSDL_LOCATION, SERVICE);
|
||||
}
|
||||
|
||||
public CarRegBasicInfoService(WebServiceFeature ... features) {
|
||||
super(WSDL_LOCATION, SERVICE, features);
|
||||
}
|
||||
|
||||
public CarRegBasicInfoService(URL wsdlLocation, WebServiceFeature ... features) {
|
||||
super(wsdlLocation, SERVICE, features);
|
||||
}
|
||||
|
||||
public CarRegBasicInfoService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
|
||||
super(wsdlLocation, serviceName, features);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
* returns CarRegBasicInfo
|
||||
*/
|
||||
@WebEndpoint(name = "CarRegBasicInfo")
|
||||
public CarRegBasicInfo getCarRegBasicInfo() {
|
||||
return super.getPort(CarRegBasicInfo, CarRegBasicInfo.class);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param features
|
||||
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
|
||||
* @return
|
||||
* returns CarRegBasicInfo
|
||||
*/
|
||||
@WebEndpoint(name = "CarRegBasicInfo")
|
||||
public CarRegBasicInfo getCarRegBasicInfo(WebServiceFeature... features) {
|
||||
return super.getPort(CarRegBasicInfo, CarRegBasicInfo.class, features);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue