GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
ShipmentProcessingServiceV2.java
Go to the documentation of this file.
1package eu.gls_group.fpcs.v2.shipmentprocessing;
2
3import java.net.URL;
4import javax.xml.namespace.QName;
5import javax.xml.ws.WebEndpoint;
6import javax.xml.ws.WebServiceClient;
7import javax.xml.ws.WebServiceFeature;
8import javax.xml.ws.Service;
9
20@WebServiceClient(name = "ShipmentProcessingServiceV2",
21 wsdlLocation = "ShipmentProcessingV2.wsdl",
22 targetNamespace = "http://fpcs.gls-group.eu/v2/ShipmentProcessing")
23public class ShipmentProcessingServiceV2 extends Service {
24
25 public final static URL WSDL_LOCATION;
26
27 public final static QName SERVICE = new QName("http://fpcs.gls-group.eu/v2/ShipmentProcessing", "ShipmentProcessingServiceV2");
28 public final static QName ShipmentProcessingBindingV2 = new QName("http://fpcs.gls-group.eu/v2/ShipmentProcessing", "ShipmentProcessingBindingV2");
29 static {
30 URL url = ShipmentProcessingServiceV2.class.getResource("ShipmentProcessingV2.wsdl");
31 if (url == null) {
32 url = ShipmentProcessingServiceV2.class.getClassLoader().getResource("ShipmentProcessingV2.wsdl");
33 }
34 if (url == null) {
35 java.util.logging.Logger.getLogger(ShipmentProcessingServiceV2.class.getName())
36 .log(java.util.logging.Level.INFO,
37 "Can not initialize the default wsdl from {0}", "ShipmentProcessingV2.wsdl");
38 }
39 WSDL_LOCATION = url;
40 }
41
42 public ShipmentProcessingServiceV2(URL wsdlLocation) {
43 super(wsdlLocation, SERVICE);
44 }
45
46 public ShipmentProcessingServiceV2(URL wsdlLocation, QName serviceName) {
47 super(wsdlLocation, serviceName);
48 }
49
51 super(WSDL_LOCATION, SERVICE);
52 }
53
54 public ShipmentProcessingServiceV2(WebServiceFeature ... features) {
55 super(WSDL_LOCATION, SERVICE, features);
56 }
57
58 public ShipmentProcessingServiceV2(URL wsdlLocation, WebServiceFeature ... features) {
59 super(wsdlLocation, SERVICE, features);
60 }
61
62 public ShipmentProcessingServiceV2(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
63 super(wsdlLocation, serviceName, features);
64 }
65
66
67
68
74 @WebEndpoint(name = "ShipmentProcessingBindingV2")
75 public ShipmentProcessingPortTypeV2 getShipmentProcessingBindingV2() {
76 return super.getPort(ShipmentProcessingBindingV2, ShipmentProcessingPortTypeV2.class);
77 }
78
86 @WebEndpoint(name = "ShipmentProcessingBindingV2")
87 public ShipmentProcessingPortTypeV2 getShipmentProcessingBindingV2(WebServiceFeature... features) {
88 return super.getPort(ShipmentProcessingBindingV2, ShipmentProcessingPortTypeV2.class, features);
89 }
90
91}
ShipmentProcessingServiceV2(URL wsdlLocation, QName serviceName, WebServiceFeature ... features)
ShipmentProcessingServiceV2(URL wsdlLocation, WebServiceFeature ... features)