GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
SystemSettingsPortType.java
Go to the documentation of this file.
1 package eu.gls_group.fpcs.v1.systemsettings;
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 
10 @WebService(targetNamespace = "http://fpcs.gls-group.eu/v1/SystemSettings", name = "SystemSettingsPortType")
11 @XmlSeeAlso({
12  eu.glsgroup.fpcs.datatypes.soap.v1.common.ObjectFactory.class,
13  eu.glsgroup.fpcs.datatypes.soap.v1.timeframe.ObjectFactory.class
14 })
15 
16 //TODO: Naming for GBP must be defined
17 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
18 public interface SystemSettingsPortType {
19  @WebMethod(action = "http://fpcs.gls-group.eu/v1/setGlobalBusinessParcel")
20  @WebResult(name = "SetGlobalBusinessParcel", targetNamespace = "http://fpcs.gls-group.eu/v1/systemsettings", partName = "body")
21  public void setGlobalBusinessParcel(
22  @WebParam(partName = "isGBPActive", name = "isGBPActive", targetNamespace = "http://fpcs.gls-group.eu/v1/SystemSettings") boolean isGBPactive);
23 }