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