ShipmentACUReportShipmentContainerInfoDTO.java
package com.tradecloud.dto.shipment.actualunitcosting;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
/**
* Created by ds on 2014/05/12.
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "ContainerInfo")
public class ShipmentACUReportShipmentContainerInfoDTO {
@XmlAttribute(required = true)
String containerReference;
@XmlAttribute(required = true)
String finalDestination;
@XmlAttribute(required = true)
String containerType;
public String getContainerReference() {
return containerReference;
}
public void setContainerReference(String containerReference) {
this.containerReference = containerReference;
}
public String getFinalDestination() {
return finalDestination;
}
public void setFinalDestination(String finalDestination) {
this.finalDestination = finalDestination;
}
public String getContainerType() {
return containerType;
}
public void setContainerType(String containerType) {
this.containerType = containerType;
}
}