GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
TimeframePortType.java
Go to the documentation of this file.
1 package eu.gls_group.fpcs.v1.timeframe;
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/Timeframe", name = "TimeframePortType")
17 @XmlSeeAlso({eu.glsgroup.fpcs.datatypes.soap.v1.common.ObjectFactory.class, eu.glsgroup.fpcs.datatypes.soap.v1.timeframe.ObjectFactory.class})
18 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
19 public interface TimeframePortType {
20 
21  @WebMethod(action = "http://fpcs.gls-group.eu/v1/getEstimatedDeliveryDays")
22  @WebResult(name = "EstimatedDeliveryDays", targetNamespace = "http://fpcs.gls-group.eu/v1/Timeframe", partName = "body")
23  public eu.glsgroup.fpcs.datatypes.soap.v1.timeframe.EstimatedDeliveryDays getEstimatedDeliveryDays(
24  @WebParam(partName = "fromToLocation", name = "FromToLocation", targetNamespace = "http://fpcs.gls-group.eu/v1/Timeframe")
25  eu.glsgroup.fpcs.datatypes.soap.v1.timeframe.FromToLocation fromToLocation
27 }