GLS ShipIT  2.8.11
GLS ShipIT - REST 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 
15 @WebService(targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/", name = "ParcelShopSearch")
16 @XmlSeeAlso({ObjectFactory.class})
17 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
18 public interface ParcelShopSearch {
19 
20  @WebMethod(operationName = "GetParcelShopById")
21  @WebResult(name = "GetParcelShopByIdResponse", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/", partName = "GetParcelShopByIdResponse")
22  public GetParcelShopByIdResponseType getParcelShopById(
23  @WebParam(partName = "GetParcelShopByIdRequest", name = "GetParcelShopByIdRequest", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/")
24  GetParcelShopByIdRequestType getParcelShopByIdRequest
25  );
26 
27  @WebMethod(operationName = "GetParcelShopByCountryCode")
28  @WebResult(name = "GetParcelShopByCountryCodeResponse", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/", partName = "GetParcelShopByCountryCodeResponse")
29  public GetParcelShopByCountryCodeResponseType getParcelShopByCountryCode(
30  @WebParam(partName = "GetParcelShopByCountryCodeRequest", name = "GetParcelShopByCountryCodeRequest", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/")
31  GetParcelShopByCountryCodeRequestType getParcelShopByCountryCodeRequest
32  );
33 
34  @WebMethod(operationName = "GetParcelShopInArea")
35  @WebResult(name = "GetParcelShopInAreaResponse", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/", partName = "GetParcelShopInAreaResponse")
36  public GetParcelShopInAreaResponse getParcelShopInArea(
37  @WebParam(partName = "GetParcelShopInAreaRequest", name = "GetParcelShopInAreaRequest", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/")
38  GetParcelShopInAreaRequestType getParcelShopInAreaRequest
39  );
40 
41  @WebMethod(operationName = "GetParcelShops")
42  @WebResult(name = "GetParcelShopsResponse", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/", partName = "GetParcelShopsResponse")
43  public GetParcelShopReponseType getParcelShops(
44  @WebParam(partName = "GetParcelShopsRequest", name = "GetParcelShopsRequest", targetNamespace = "http://2010_01.ParcelShopSearch.gls-group.eu/ParcelShopSearch/")
45  GetParcelShopRequestType getParcelShopsRequest
46  );
47 }