GLS ShipIT  3.3.20
GLS ShipIT - SOAP 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 
16 @WebService(targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking", name = "TrackingPortType")
18 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
19 public interface TrackingPortType {
20 
21  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getTUDetail")
22  @WebResult(name = "ParcelDetailResponse", targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking", partName = "body")
23  public eu.glsgroup.fpcs.datatypes.soap.v1.tracking.ParcelDetailResponse getParcelDetailsByID(
24 
25  @WebParam(partName = "TUDetailRequestParameter", name = "DetailsReferenceData", targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking")
26  eu.glsgroup.fpcs.datatypes.soap.v1.tracking.DetailsReferenceData tuDetailRequestParameter
27  ) throws InvalidFieldValueMessage;
28 
29  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getTUPOD")
30  @WebResult(name = "PODResponse", targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking", partName = "body")
31  public eu.glsgroup.fpcs.datatypes.soap.v1.tracking.PODResponse getParcelPODByID(
32 
33  @WebParam(partName = "TUPODRequestParameter", name = "TUPReferenceData", targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking")
35  ) throws InvalidFieldValueMessage;
36 
37  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getTUList")
38  @WebResult(name = "TUListResponse", targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking", partName = "body")
40 
41  @WebParam(partName = "TUListRequestParameter", name = "TULReferenceData", targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking")
42  eu.glsgroup.fpcs.datatypes.soap.v1.tracking.TULReferenceData tuListRequestParameter
43  ) throws InvalidFieldValueMessage;
44 }