GLS ShipIT  3.5.15
GLS ShipIT - SOAP services
ParcelShopService.java
Go to the documentation of this file.
1 package eu.gls_group.fpcs.v1.parcelshop;
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 
19 @WebServiceClient(name = "ParcelShopService",
20  wsdlLocation = "ParcelShop.wsdl",
21  targetNamespace = "http://fpcs.gls-group.eu/v1/ParcelShop")
22 public class ParcelShopService extends Service {
23 
24  public final static URL WSDL_LOCATION;
25 
26  public final static QName SERVICE = new QName("http://fpcs.gls-group.eu/v1/ParcelShop", "ParcelShopService");
27  public final static QName ParcelShopPort = new QName("http://fpcs.gls-group.eu/v1/ParcelShop", "ParcelShopPort");
28  static {
29  URL url = ParcelShopService.class.getResource("ParcelShop.wsdl");
30  if (url == null) {
31  url = ParcelShopService.class.getClassLoader().getResource("ParcelShop.wsdl");
32  }
33  if (url == null) {
34  java.util.logging.Logger.getLogger(ParcelShopService.class.getName())
35  .log(java.util.logging.Level.INFO,
36  "Can not initialize the default wsdl from {0}", "ParcelShop.wsdl");
37  }
38  WSDL_LOCATION = url;
39  }
40 
41  public ParcelShopService(URL wsdlLocation) {
42  super(wsdlLocation, SERVICE);
43  }
44 
45  public ParcelShopService(URL wsdlLocation, QName serviceName) {
46  super(wsdlLocation, serviceName);
47  }
48 
49  public ParcelShopService() {
50  super(WSDL_LOCATION, SERVICE);
51  }
52 
53  public ParcelShopService(WebServiceFeature ... features) {
54  super(WSDL_LOCATION, SERVICE, features);
55  }
56 
57  public ParcelShopService(URL wsdlLocation, WebServiceFeature ... features) {
58  super(wsdlLocation, SERVICE, features);
59  }
60 
61  public ParcelShopService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
62  super(wsdlLocation, serviceName, features);
63  }
64 
65 
66 
67 
73  @WebEndpoint(name = "ParcelShopPort")
74  public ParcelShopPortType getParcelShopPort() {
75  return super.getPort(ParcelShopPort, ParcelShopPortType.class);
76  }
77 
85  @WebEndpoint(name = "ParcelShopPort")
86  public ParcelShopPortType getParcelShopPort(WebServiceFeature... features) {
87  return super.getPort(ParcelShopPort, ParcelShopPortType.class, features);
88  }
89 
90 }
ParcelShopService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features)
ParcelShopService(URL wsdlLocation, WebServiceFeature ... features)
ParcelShopService(URL wsdlLocation, QName serviceName)