2package eu.gls_group.fpcs.v1.common;
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlSchemaType;
8import javax.xml.bind.annotation.XmlType;
37@XmlAccessorType(XmlAccessType.FIELD)
38@XmlType(name =
"Volume", propOrder = {
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")
67 public String getWidth() {
140 return scannerStation;
152 this.scannerStation = value;
164 return volumetricType;
176 this.volumetricType = value;
void setHeight(String value)
void setLength(String value)
VolumeType getVolumetricType()
void setVolumetricType(VolumeType value)
String getScannerStation()
void setScannerStation(String value)
void setWidth(String value)