LCDTOList.java
package com.tradecloud.dto.letterofcredit.integration;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "letterOfCreditList")
public class LCDTOList {
private List<LCDTO> lcdtos = new ArrayList<LCDTO>();
public List<LCDTO> getLcdtos() {
return lcdtos;
}
public void setLcdtos(List<LCDTO> lcdtos) {
this.lcdtos = lcdtos;
}
}