PJDataSerivce.java
3.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package com.bsth.wsdl;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceFeature;
import java.net.MalformedURLException;
import java.net.URL;
/**
* This class was generated by Apache CXF 3.3.2
* 2019-06-25T10:55:23.807+08:00
* Generated source version: 3.3.2
*
*/
@WebServiceClient(name = "PJDataSerivce",
wsdlLocation = "http://116.236.238.218:31/PJDataInterface/PJDataService.asmx?wsdl",
targetNamespace = "http://www.pd-transport.com/")
public class PJDataSerivce extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("http://www.pd-transport.com/", "PJDataSerivce");
public final static QName PJDataSerivceSoap12 = new QName("http://www.pd-transport.com/", "PJDataSerivceSoap12");
public final static QName PJDataSerivceSoap = new QName("http://www.pd-transport.com/", "PJDataSerivceSoap");
static {
URL url = null;
try {
url = new URL("http://116.236.238.218:31/PJDataInterface/PJDataService.asmx?wsdl");
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(PJDataSerivce.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "http://116.236.238.218:31/PJDataInterface/PJDataService.asmx?wsdl");
}
WSDL_LOCATION = url;
}
public PJDataSerivce(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
public PJDataSerivce(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public PJDataSerivce() {
super(WSDL_LOCATION, SERVICE);
}
public PJDataSerivce(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
public PJDataSerivce(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
public PJDataSerivce(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns PJDataSerivceSoap
*/
@WebEndpoint(name = "PJDataSerivceSoap12")
public PJDataSerivceSoap getPJDataSerivceSoap12() {
return super.getPort(PJDataSerivceSoap12, PJDataSerivceSoap.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 PJDataSerivceSoap
*/
@WebEndpoint(name = "PJDataSerivceSoap12")
public PJDataSerivceSoap getPJDataSerivceSoap12(WebServiceFeature... features) {
return super.getPort(PJDataSerivceSoap12, PJDataSerivceSoap.class, features);
}
/**
*
* @return
* returns PJDataSerivceSoap
*/
@WebEndpoint(name = "PJDataSerivceSoap")
public PJDataSerivceSoap getPJDataSerivceSoap() {
return super.getPort(PJDataSerivceSoap, PJDataSerivceSoap.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 PJDataSerivceSoap
*/
@WebEndpoint(name = "PJDataSerivceSoap")
public PJDataSerivceSoap getPJDataSerivceSoap(WebServiceFeature... features) {
return super.getPort(PJDataSerivceSoap, PJDataSerivceSoap.class, features);
}
}