SummaryActualSearchResult.java

package com.tradecloud.dto.invoice;

import javax.xml.bind.annotation.*;
import java.io.Serializable;
import java.util.Date;
import java.util.List;

/**
 * Created with IntelliJ IDEA.
 * User: ds
 * Date: 2014/05/01
 * Time: 11:53 AM
 * To change this template use File | Settings | File Templates.
 */
@XmlRootElement(name = "SummaryActualSearchResult")
@XmlAccessorType(XmlAccessType.FIELD)
public class SummaryActualSearchResult implements Serializable {

    @XmlAttribute(required = true)
    private String orderReference;

    @XmlAttribute(required = true)
    private String shipmentReference;

    @XmlAttribute(required = true)
    private String buyer;

    @XmlAttribute(required = true)
    private String supplier;

    @XmlAttribute(required = true)
    private String businessUnit;

    @XmlAttribute(required = true)
    private String division;

    @XmlAttribute(required = true)
    private String department;

    @XmlAttribute(required = true)
    private Date shipmentSignedOffDate;

    @XmlAttribute(required = true)
    private Date actualDepartureDate;

    @XmlAttribute(required = true)
    private Date actualArrivalAtFinalDestinationDate;

    @XmlAttribute(required = true)
    private String actualArrivalAtFinalDestinationMonth;

    @XmlAttribute(required = true)
    private String totalLandedCostExclIntProv;

    @XmlAttribute(required = true)
    private String totalLandedCostExclIntProvCurrency;

    @XmlAttribute(required = true)
    private String totalLandedCostExclVAT;

    @XmlAttribute(required = true)
    private String totalLandedCostExclVATCurrency;

    @XmlElement(name = "SummaryActualCostLineDTO", required = true)
    private List<SummaryActualCostLineDTO> summaryActualCostLineDTO;

    private String freightForwarder;
    private String  containerType;
    private String  shippingMode;
    private String podCountry;
    private String TEUs;

    public String getOrderReference() {
        return orderReference;
    }

    public void setOrderReference(String orderReference) {
        this.orderReference = orderReference;
    }

    public String getShipmentReference() {
        return shipmentReference;
    }

    public void setShipmentReference(String shipmentReference) {
        this.shipmentReference = shipmentReference;
    }

    public String getBuyer() {
        return buyer;
    }

    public void setBuyer(String buyer) {
        this.buyer = buyer;
    }

    public String getSupplier() {
        return supplier;
    }

    public void setSupplier(String supplier) {
        this.supplier = supplier;
    }

    public String getBusinessUnit() {
        return businessUnit;
    }

    public void setBusinessUnit(String businessUnit) {
        this.businessUnit = businessUnit;
    }

    public String getDivision() {
        return division;
    }

    public void setDivision(String division) {
        this.division = division;
    }

    public String getDepartment() {
        return department;
    }

    public void setDepartment(String department) {
        this.department = department;
    }

    public Date getShipmentSignedOffDate() {
        return shipmentSignedOffDate;
    }

    public void setShipmentSignedOffDate(Date shipmentSignedOffDate) {
        this.shipmentSignedOffDate = shipmentSignedOffDate;
    }

    public Date getActualArrivalAtFinalDestinationDate() {
        return actualArrivalAtFinalDestinationDate;
    }

    public void setActualArrivalAtFinalDestinationDate(Date actualArrivalAtFinalDestinationDate) {
        this.actualArrivalAtFinalDestinationDate = actualArrivalAtFinalDestinationDate;
    }

    public String getActualArrivalAtFinalDestinationMonth() {
        return actualArrivalAtFinalDestinationMonth;
    }

    public void setActualArrivalAtFinalDestinationMonth(String actualArrivalAtFinalDestinationMonth) {
        this.actualArrivalAtFinalDestinationMonth = actualArrivalAtFinalDestinationMonth;
    }

    public String getTotalLandedCostExclIntProv() {
        return totalLandedCostExclIntProv;
    }

    public void setTotalLandedCostExclIntProv(String totalLandedCostExclIntProv) {
        this.totalLandedCostExclIntProv = totalLandedCostExclIntProv;
    }

    public String getTotalLandedCostExclIntProvCurrency() {
        return totalLandedCostExclIntProvCurrency;
    }

    public void setTotalLandedCostExclIntProvCurrency(String totalLandedCostExclIntProvCurrency) {
        this.totalLandedCostExclIntProvCurrency = totalLandedCostExclIntProvCurrency;
    }

    public String getTotalLandedCostExclVAT() {
        return totalLandedCostExclVAT;
    }

    public void setTotalLandedCostExclVAT(String totalLandedCostExclVAT) {
        this.totalLandedCostExclVAT = totalLandedCostExclVAT;
    }

    public String getTotalLandedCostExclVATCurrency() {
        return totalLandedCostExclVATCurrency;
    }

    public void setTotalLandedCostExclVATCurrency(String totalLandedCostExclVATCurrency) {
        this.totalLandedCostExclVATCurrency = totalLandedCostExclVATCurrency;
    }

    public List<SummaryActualCostLineDTO> getSummaryActualCostLineDTO() {
        return summaryActualCostLineDTO;
    }

    public void setSummaryActualCostLineDTO(List<SummaryActualCostLineDTO> summaryActualCostLineDTO) {
        this.summaryActualCostLineDTO = summaryActualCostLineDTO;
    }

    public Date getActualDepartureDate() {
        return actualDepartureDate;
    }

    public void setActualDepartureDate(Date actualDepartureDate) {
        this.actualDepartureDate = actualDepartureDate;
    }

    public String getFreightForwarder() {
        return freightForwarder;
    }

    public void setFreightForwarder(String freightForwarder) {
        this.freightForwarder = freightForwarder;
    }

    public String getContainerType() {
        return containerType;
    }

    public void setContainerType(String containerType) {
        this.containerType = containerType;
    }

    public String getShippingMode() {
        return shippingMode;
    }

    public void setShippingMode(String shippingMode) {
        this.shippingMode = shippingMode;
    }

    public String getPodCountry() {
        return podCountry;
    }

    public void setPodCountry(String podCountry) {
        this.podCountry = podCountry;
    }

    public String getTEUs() {
        return TEUs;
    }

    public void setTEUs(String TEUs) {
        this.TEUs = TEUs;
    }
}