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