-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBtosResponse.java
More file actions
93 lines (80 loc) · 3.26 KB
/
Copy pathBtosResponse.java
File metadata and controls
93 lines (80 loc) · 3.26 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
package com.yuesnm.pukka.client.cxf.respbtos;
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.0.4
* 2018-01-24T17:09:57.444+08:00
* Generated source version: 3.0.4
*
*/
@WebServiceClient(name = "BtosResponse",
wsdlLocation = "http://api.yuesnm.com:83/input-pukka/BtosResp?wsdl",
targetNamespace = "respBtos")
public class BtosResponse extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("respBtos", "BtosResponse");
public final static QName Btos = new QName("respBtos", "Btos");
static {
URL url = null;
try {
url = new URL("http://api.yuesnm.com:83/input-pukka/BtosResp?wsdl");
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(BtosResponse.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "http://api.yuesnm.com:83/input-pukka/BtosResp?wsdl");
}
WSDL_LOCATION = url;
}
public BtosResponse(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
public BtosResponse(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public BtosResponse() {
super(WSDL_LOCATION, SERVICE);
}
//This constructor requires JAX-WS API 2.2. You will need to endorse the 2.2
//API jar or re-run wsdl2java with "-frontend jaxws21" to generate JAX-WS 2.1
//compliant code instead.
public BtosResponse(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
//This constructor requires JAX-WS API 2.2. You will need to endorse the 2.2
//API jar or re-run wsdl2java with "-frontend jaxws21" to generate JAX-WS 2.1
//compliant code instead.
public BtosResponse(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
//This constructor requires JAX-WS API 2.2. You will need to endorse the 2.2
//API jar or re-run wsdl2java with "-frontend jaxws21" to generate JAX-WS 2.1
//compliant code instead.
public BtosResponse(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns IInputPukkaService
*/
@WebEndpoint(name = "Btos")
public IInputPukkaService getBtos() {
return super.getPort(Btos, IInputPukkaService.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 IInputPukkaService
*/
@WebEndpoint(name = "Btos")
public IInputPukkaService getBtos(WebServiceFeature... features) {
return super.getPort(Btos, IInputPukkaService.class, features);
}
}