1 package eu.gls_group.fpcs.v1.shipmentprocessing;
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;
16 @WebService(targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing", name =
"ShipmentProcessingPortType")
18 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
21 @WebMethod(action =
"http://fpcs.gls-group.eu/v1/createShipment")
22 @WebResult(name =
"CreateParcelsResponse", targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing/types", partName =
"body")
24 @WebParam(partName =
"shipment", name =
"ShipmentRequestData", targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing/types")
28 @WebMethod(action =
"http://fpcs.gls-group.eu/v1/validateShipment")
29 @WebResult(name =
"ValidateParcelsResponse", targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing/types", partName =
"body")
31 @WebParam(partName =
"shipment", name =
"ValidateShipmentRequestData", targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing/types")
35 @WebMethod(action =
"http://fpcs.gls-group.eu/v1/cancelShipment")
36 @WebResult(name =
"CancelParcelResponse", targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing/types", partName =
"body")
38 @WebParam(partName =
"trackID", name =
"TrackID", targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing/types")
39 java.lang.String trackID
42 @WebMethod(action =
"http://fpcs.gls-group.eu/v1/getEndOfDayReport")
43 @WebResult(name =
"EndOfDayResponse", targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing/types", partName =
"body")
45 @WebParam(partName =
"endOfDayDate", name =
"EndOfDayDate", targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing/types")
46 java.util.Date endOfDayDate
49 @WebMethod(action =
"http://fpcs.gls-group.eu/v1/getAllowedServices")
50 @WebResult(name =
"AllowedServicesResponse", targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing/types", partName =
"body")
52 @WebParam(partName =
"allowedServicesRequestParameter", name =
"AllowedServicesRequestParameter", targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing/types")
54 )
throws MandatoryFieldMissingMessage, InvalidFieldValueMessage;
56 @WebMethod(action =
"http://fpcs.gls-group.eu/v1/updateParcelWeight")
57 @WebResult(name =
"UpdateParcelWeightResponse", targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing/types", partName =
"body")
59 @WebParam(partName =
"updateParcelWeightRequestParameter", name =
"UpdateParcelWeightRequestParameter", targetNamespace =
"http://fpcs.gls-group.eu/v1/ShipmentProcessing/types")