GLS ShipIT  3.3.20
GLS ShipIT - SOAP services
ParcelShopSearch.java
Go to the documentation of this file.
1 package eu.glsgroup.ws.parcelshopsearch;
2 
3 import javax.jws.WebMethod;
4 import javax.jws.WebParam;
5 import javax.jws.WebResult;
6 import javax.jws.WebService;
7 import javax.jws.soap.SOAPBinding;
8 import javax.xml.bind.annotation.XmlSeeAlso;
9 
16 @WebService(targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/", name = "ParcelShopSearch")
17 @XmlSeeAlso({ObjectFactory.class})
18 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
19 public interface ParcelShopSearch {
20 
21  @WebMethod(operationName = "GetParcelShopById")
22  @WebResult(name = "GetParcelShopByIdResponse", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/", partName = "GetParcelShopByIdResponse")
23  public GetParcelShopByIdResponseType getParcelShopById(
24 
25  @WebParam(partName = "GetParcelShopByIdRequest", name = "GetParcelShopByIdRequest", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/")
26  GetParcelShopByIdRequestType getParcelShopByIdRequest
27  );
28 
29  @WebMethod(operationName = "GetParcelShopByCountryCode")
30  @WebResult(name = "GetParcelShopByCountryCodeResponse", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/", partName = "GetParcelShopByCountryCodeResponse")
31  public GetParcelShopByCountryCodeResponseType getParcelShopByCountryCode(
32 
33  @WebParam(partName = "GetParcelShopByCountryCodeRequest", name = "GetParcelShopByCountryCodeRequest", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/")
34  GetParcelShopByCountryCodeRequestType getParcelShopByCountryCodeRequest
35  );
36 
37  @WebMethod(operationName = "GetParcelShopInArea")
38  @WebResult(name = "GetParcelShopInAreaResponse", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/", partName = "GetParcelShopInAreaResponse")
39  public GetParcelShopInAreaResponse getParcelShopInArea(
40 
41  @WebParam(partName = "GetParcelShopInAreaRequest", name = "GetParcelShopInAreaRequest", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/")
42  GetParcelShopInAreaRequestType getParcelShopInAreaRequest
43  );
44 
45  @WebMethod(operationName = "GetParcelShops")
46  @WebResult(name = "GetParcelShopsResponse", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/", partName = "GetParcelShopsResponse")
47  public GetParcelShopReponseType getParcelShops(
48 
49  @WebParam(partName = "GetParcelShopsRequest", name = "GetParcelShopsRequest", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/")
50  GetParcelShopRequestType getParcelShopsRequest
51  );
52 }