GLS ShipIT  3.3.20
GLS ShipIT - REST services
ShipmentProcessingPortType.java
Go to the documentation of this file.
1 package eu.gls_group.fpcs.v1.shipmentprocessing;
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://fpcs.gls-group.eu/v1/ShipmentProcessing", name = "ShipmentProcessingPortType")
18 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
19 public interface ShipmentProcessingPortType {
20 
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 
25  @WebParam(partName = "shipment", name = "ShipmentRequestData", targetNamespace = "http://fpcs.gls-group.eu/v1/ShipmentProcessing/types")
28 
29  @WebMethod(action = "http://fpcs.gls-group.eu/v1/validateShipment")
30  @WebResult(name = "ValidateParcelsResponse", targetNamespace = "http://fpcs.gls-group.eu/v1/ShipmentProcessing/types", partName = "body")
32 
33  @WebParam(partName = "shipment", name = "ValidateShipmentRequestData", targetNamespace = "http://fpcs.gls-group.eu/v1/ShipmentProcessing/types")
35  ) throws MandatoryFieldMissingMessage, InvalidFieldValueMessage;
36 
37  @WebMethod(action = "http://fpcs.gls-group.eu/v1/cancelShipment")
38  @WebResult(name = "CancelParcelResponse", targetNamespace = "http://fpcs.gls-group.eu/v1/ShipmentProcessing/types", partName = "body")
40 
41  @WebParam(partName = "trackID", name = "TrackID", targetNamespace = "http://fpcs.gls-group.eu/v1/ShipmentProcessing/types")
42  java.lang.String trackID
43  ) throws InsufficientPermissionMessage, MandatoryFieldMissingMessage, InvalidFieldValueMessage;
44 
45  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getEndOfDayReport")
46  @WebResult(name = "EndOfDayResponse", targetNamespace = "http://fpcs.gls-group.eu/v1/ShipmentProcessing/types", partName = "body")
48 
49  @WebParam(partName = "endOfDayDate", name = "EndOfDayDate", targetNamespace = "http://fpcs.gls-group.eu/v1/ShipmentProcessing/types")
50  java.lang.String endOfDayDate
51  ) throws InvalidFieldValueMessage, MandatoryFieldMissingMessage, CouldNotTransmitShipmentsMessage;
52 
53  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getAllowedServices")
54  @WebResult(name = "AllowedServicesResponse", targetNamespace = "http://fpcs.gls-group.eu/v1/ShipmentProcessing/types", partName = "body")
56 
57  @WebParam(partName = "allowedServicesRequestParameter", name = "AllowedServicesRequestParameter", targetNamespace = "http://fpcs.gls-group.eu/v1/ShipmentProcessing/types")
59  ) throws MandatoryFieldMissingMessage, InvalidFieldValueMessage;
60 
61  @WebMethod(action = "http://fpcs.gls-group.eu/v1/updateParcelWeight")
62  @WebResult(name = "UpdateParcelWeightResponse", targetNamespace = "http://fpcs.gls-group.eu/v1/ShipmentProcessing/types", partName = "body")
64 
65  @WebParam(partName = "updateParcelWeightRequestParameter", name = "UpdateParcelWeightRequestParameter", targetNamespace = "http://fpcs.gls-group.eu/v1/ShipmentProcessing/types")
67  ) throws MandatoryFieldMissingMessage, InvalidShipmentIDMessage, InvalidFieldValueMessage;
68 }