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