GLS ShipIT  3.3.20
GLS ShipIT - REST services
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.XmlSchemaType;
8 import javax.xml.bind.annotation.XmlType;
10 
11 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "AllowedService", propOrder = {
39  "productName",
40  "serviceName"
41 })
42 public class AllowedService {
43 
44  @XmlElement(name = "ProductName")
45  @XmlSchemaType(name = "string")
46  protected ProductType productName;
47  @XmlElement(name = "ServiceName")
48  protected String serviceName;
49 
58  public ProductType getProductName() {
59  return productName;
60  }
61 
70  public void setProductName(ProductType value) {
71  this.productName = value;
72  }
73 
82  public String getServiceName() {
83  return serviceName;
84  }
85 
94  public void setServiceName(String value) {
95  this.serviceName = value;
96  }
97 
98 }