GLS ShipIT  4.0.f3
GLS ShipIT - SOAP services
ParcelShopSearch_Service.java
Go to the documentation of this file.
1 package eu.glsgroup.ws.parcelshopsearch;
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 
15 @WebServiceClient(name = "ParcelShopSearch",
16  wsdlLocation = "2010_01_ParcelShopSearch.wsdl",
17  targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/")
18 public class ParcelShopSearch_Service extends Service {
19 
20  public final static URL WSDL_LOCATION;
21 
22  public final static QName SERVICE = new QName("http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/", "ParcelShopSearch");
23  public final static QName ParcelShopSearch = new QName("http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/", "ParcelShopSearch");
24  static {
25  URL url = ParcelShopSearch_Service.class.getResource("2010_01_ParcelShopSearch.wsdl");
26  if (url == null) {
27  url = ParcelShopSearch_Service.class.getClassLoader().getResource("2010_01_ParcelShopSearch.wsdl");
28  }
29  if (url == null) {
30  java.util.logging.Logger.getLogger(ParcelShopSearch_Service.class.getName())
31  .log(java.util.logging.Level.INFO,
32  "Can not initialize the default wsdl from {0}", "2010_01_ParcelShopSearch.wsdl");
33  }
34  WSDL_LOCATION = url;
35  }
36 
37  public ParcelShopSearch_Service(URL wsdlLocation) {
38  super(wsdlLocation, SERVICE);
39  }
40 
41  public ParcelShopSearch_Service(URL wsdlLocation, QName serviceName) {
42  super(wsdlLocation, serviceName);
43  }
44 
46  super(WSDL_LOCATION, SERVICE);
47  }
48 
49  public ParcelShopSearch_Service(WebServiceFeature ... features) {
50  super(WSDL_LOCATION, SERVICE, features);
51  }
52 
53  public ParcelShopSearch_Service(URL wsdlLocation, WebServiceFeature ... features) {
54  super(wsdlLocation, SERVICE, features);
55  }
56 
57  public ParcelShopSearch_Service(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
58  super(wsdlLocation, serviceName, features);
59  }
60 
61 
62 
63 
69  @WebEndpoint(name = "ParcelShopSearch")
70  public ParcelShopSearch getParcelShopSearch() {
71  return super.getPort(ParcelShopSearch, ParcelShopSearch.class);
72  }
73 
81  @WebEndpoint(name = "ParcelShopSearch")
82  public ParcelShopSearch getParcelShopSearch(WebServiceFeature... features) {
83  return super.getPort(ParcelShopSearch, ParcelShopSearch.class, features);
84  }
85 
86 }
ParcelShopSearch_Service(URL wsdlLocation, WebServiceFeature ... features)
ParcelShopSearch_Service(URL wsdlLocation, QName serviceName, WebServiceFeature ... features)