GLS ShipIT  3.5.15
GLS ShipIT - REST services
TrackingPortType.java
Go to the documentation of this file.
1 package eu.gls_group.fpcs.v1.tracking;
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/Tracking", name = "TrackingPortType")
17 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
18 public interface TrackingPortType {
19 
20  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getTUDetail")
21  @WebResult(name = "ParcelDetailResponse", targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking", partName = "body")
22  public eu.glsgroup.fpcs.datatypes.soap.v1.tracking.ParcelDetailResponse getParcelDetailsByID(
23 
24  @WebParam(partName = "TUDetailRequestParameter", name = "DetailsReferenceData", targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking")
25  eu.glsgroup.fpcs.datatypes.soap.v1.tracking.DetailsReferenceData tuDetailRequestParameter
27 
28  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getTUPOD")
29  @WebResult(name = "PODResponse", targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking", partName = "body")
30  public eu.glsgroup.fpcs.datatypes.soap.v1.tracking.PODResponse getParcelPODByID(
31 
32  @WebParam(partName = "TUPODRequestParameter", name = "TUPReferenceData", targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking")
34  ) throws InvalidFieldValueMessage, InvalidShipmentIDMessage, MandatoryFieldMissingMessage;
35 
36  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getTUList")
37  @WebResult(name = "TUListResponse", targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking", partName = "body")
39 
40  @WebParam(partName = "TUListRequestParameter", name = "TULReferenceData", targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking")
41  eu.glsgroup.fpcs.datatypes.soap.v1.tracking.TULReferenceData tuListRequestParameter
42  ) throws InvalidFieldValueMessage, MandatoryFieldMissingMessage;
43 }