GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
TrackingPortType.java
Go to the documentation of this file.
1package eu.gls_group.fpcs.v1.tracking;
2
3import javax.jws.WebMethod;
4import javax.jws.WebParam;
5import javax.jws.WebResult;
6import javax.jws.WebService;
7import javax.jws.soap.SOAPBinding;
8import javax.xml.bind.annotation.XmlSeeAlso;
9
15@WebService(targetNamespace = "http://fpcs.gls-group.eu/v1/Tracking", name = "TrackingPortType")
16@XmlSeeAlso({eu.glsgroup.fpcs.datatypes.soap.v1.tracking.ObjectFactory.class, eu.gls_group.fpcs.v1.common.ObjectFactory.class})
17@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
18public 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")
33 eu.glsgroup.fpcs.datatypes.soap.v1.tracking.TUPReferenceData tupodRequestParameter
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")
38 public eu.glsgroup.fpcs.datatypes.soap.v1.tracking.TUListResponse findParcels(
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
43}