1 package eu.gls_group.fpcs.v1.parcelshop;
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;
15 @WebService(targetNamespace =
"http://fpcs.gls-group.eu/v1/ParcelShop", name =
"ParcelShopPortType")
17 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
20 @WebMethod(action =
"http://fpcs.gls-group.eu/v1/getParcelShopByID")
21 @WebResult(name =
"ParcelShop", targetNamespace =
"http://fpcs.gls-group.eu/v1/ParcelShop", partName =
"body")
24 @WebParam(partName =
"parcelShopID", name =
"ParcelShopID", targetNamespace =
"http://fpcs.gls-group.eu/v1/ParcelShop")
25 java.lang.String parcelShopID
28 @WebMethod(action =
"http://fpcs.gls-group.eu/v1/getParcelShopInDistance")
29 @WebResult(name =
"ListOfParcelShop", targetNamespace =
"http://fpcs.gls-group.eu/v1/ParcelShop", partName =
"body")
32 @WebParam(partName =
"parcelShopSearchDistance", name =
"ParcelShopSearchDistance", targetNamespace =
"http://fpcs.gls-group.eu/v1/ParcelShop")
36 @WebMethod(action =
"http://fpcs.gls-group.eu/v1/getParcelShopInArea")
37 @WebResult(name =
"ListOfParcelShop", targetNamespace =
"http://fpcs.gls-group.eu/v1/ParcelShop", partName =
"body")
40 @WebParam(partName =
"area", name =
"Area", targetNamespace =
"http://fpcs.gls-group.eu/v1/ParcelShop")
44 @WebMethod(action =
"http://fpcs.gls-group.eu/v1/getParcelShopByCountryCode")
45 @WebResult(name =
"ListOfParcelShop", targetNamespace =
"http://fpcs.gls-group.eu/v1/ParcelShop", partName =
"body")
48 @WebParam(partName =
"countryCode", name =
"CountryCode", targetNamespace =
"http://fpcs.gls-group.eu/v1/ParcelShop")
49 java.lang.String countryCode
52 @WebMethod(action =
"http://fpcs.gls-group.eu/v1/getParcelShop")
53 @WebResult(name =
"ListOfParcelShop", targetNamespace =
"http://fpcs.gls-group.eu/v1/ParcelShop", partName =
"body")
56 @WebParam(partName =
"parcelShopSearchLocation", name =
"ParcelShopSearchLocation", targetNamespace =
"http://fpcs.gls-group.eu/v1/ParcelShop")