GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
AllowedService.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.shipmentprocessing;
3 
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlType;
8 import eu.glsgroup.fpcs.datatypes.soap.v1.common.ProductType;
9 
10 
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "AllowedService", propOrder = {
38  "productName",
39  "serviceName"
40 })
41 public class AllowedService {
42 
43  @XmlElement(name = "ProductName")
44  protected ProductType productName;
45  @XmlElement(name = "ServiceName")
46  protected String serviceName;
47 
56  public ProductType getProductName() {
57  return productName;
58  }
59 
68  public void setProductName(ProductType value) {
69  this.productName = value;
70  }
71 
80  public String getServiceName() {
81  return serviceName;
82  }
83 
92  public void setServiceName(String value) {
93  this.serviceName = value;
94  }
95 
96 }