TotalLandedCostCostingCurrencyDTO.java
package com.tradecloud.dto.invoice;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;
/**
* Created with IntelliJ IDEA.
* User: ds
* Date: 2014/05/02
* Time: 11:40 AM
* To change this template use File | Settings | File Templates.
*/
@XmlRootElement(name = "TotalLandedCostCostingCurrencyDTO")
@XmlAccessorType(XmlAccessType.FIELD)
public class TotalLandedCostCostingCurrencyDTO implements Serializable {
@XmlAttribute(required = true)
private String costLineName;
@XmlAttribute(required = true)
private String costLineValue;
@XmlAttribute(required = true)
private String costlineCurrency;
@XmlAttribute(required = true)
private String costLineForwardROE;
@XmlAttribute(required = true)
private String costLineSpotROE;
public String getCostLineName() {
return costLineName;
}
public void setCostLineName(String costLineName) {
this.costLineName = costLineName;
}
public String getCostLineValue() {
return costLineValue;
}
public void setCostLineValue(String costLineValue) {
this.costLineValue = costLineValue;
}
public String getCostlineCurrency() {
return costlineCurrency;
}
public void setCostlineCurrency(String costlineCurrency) {
this.costlineCurrency = costlineCurrency;
}
public String getCostLineForwardROE() {
return costLineForwardROE;
}
public void setCostLineForwardROE(String costLineForwardROE) {
this.costLineForwardROE = costLineForwardROE;
}
}