GLS ShipIT  2.8.11
GLS ShipIT - SOAP services
ParcelShopPortType.java
Go to the documentation of this file.
1 package eu.gls_group.fpcs.v1.parcelshop;
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://fpcs.gls-group.eu/v1/ParcelShop", name = "ParcelShopPortType")
17 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
18 public interface ParcelShopPortType {
19 
20  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getParcelShopByID")
21  @WebResult(name = "ParcelShop", targetNamespace = "http://fpcs.gls-group.eu/v1/ParcelShop", partName = "body")
22  public eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ParcelShop getParcelShopByID(
23  @WebParam(partName = "parcelShopID", name = "ParcelShopID", targetNamespace = "http://fpcs.gls-group.eu/v1/ParcelShop")
24  java.lang.String parcelShopID
26 
27  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getParcelShopInArea")
28  @WebResult(name = "ListOfParcelShop", targetNamespace = "http://fpcs.gls-group.eu/v1/ParcelShop", partName = "body")
29  public eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ListOfParcelShop getParcelShopInArea(
30  @WebParam(partName = "area", name = "Area", targetNamespace = "http://fpcs.gls-group.eu/v1/ParcelShop")
32  ) throws InvalidFieldValueMessage, InsufficientPermissionMessage, MandatoryFieldMissingMessage;
33 
34  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getParcelShopByCountryCode")
35  @WebResult(name = "ListOfParcelShop", targetNamespace = "http://fpcs.gls-group.eu/v1/ParcelShop", partName = "body")
36  public eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ListOfParcelShop getParcelShopByCountryCode(
37  @WebParam(partName = "countryCode", name = "CountryCode", targetNamespace = "http://fpcs.gls-group.eu/v1/ParcelShop")
38  java.lang.String countryCode
39  ) throws InvalidFieldValueMessage, InsufficientPermissionMessage, MandatoryFieldMissingMessage;
40 
41  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getParcelShop")
42  @WebResult(name = "ListOfParcelShop", targetNamespace = "http://fpcs.gls-group.eu/v1/ParcelShop", partName = "body")
43  public eu.glsgroup.fpcs.datatypes.soap.v1.parcelshop.ListOfParcelShop findNearestParcelShopForAddress(
44  @WebParam(partName = "parcelShopSearchLocation", name = "ParcelShopSearchLocation", targetNamespace = "http://fpcs.gls-group.eu/v1/ParcelShop")
46  ) throws InvalidFieldValueMessage, InsufficientPermissionMessage, MandatoryFieldMissingMessage;
47 }