GLS ShipIT  3.3.20
GLS ShipIT - SOAP services
Volume.java
Go to the documentation of this file.
1 
2 package eu.glsgroup.fpcs.datatypes.soap.v1.common;
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;
9 
10 
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "Volume", propOrder = {
39  "width",
40  "height",
41  "length",
42  "scannerStation",
43  "volumetricType"
44 })
45 public class Volume {
46 
47  @XmlElement(name = "Width", required = true)
48  protected String width;
49  @XmlElement(name = "Height", required = true)
50  protected String height;
51  @XmlElement(name = "Length", required = true)
52  protected String length;
53  @XmlElement(name = "ScannerStation", required = true)
54  protected String scannerStation;
55  @XmlElement(name = "VolumetricType", required = true)
56  @XmlSchemaType(name = "string")
57  protected VolumeType volumetricType;
58 
67  public String getWidth() {
68  return width;
69  }
70 
79  public void setWidth(String value) {
80  this.width = value;
81  }
82 
91  public String getHeight() {
92  return height;
93  }
94 
103  public void setHeight(String value) {
104  this.height = value;
105  }
106 
115  public String getLength() {
116  return length;
117  }
118 
127  public void setLength(String value) {
128  this.length = value;
129  }
130 
139  public String getScannerStation() {
140  return scannerStation;
141  }
142 
151  public void setScannerStation(String value) {
152  this.scannerStation = value;
153  }
154 
164  return volumetricType;
165  }
166 
175  public void setVolumetricType(VolumeType value) {
176  this.volumetricType = value;
177  }
178 
179 }