1 package org.kuali.ole;
2
3
4 import org.kuali.ole.pojo.OleOrderRecord;
5
6 import java.util.ArrayList;
7 import java.util.List;
8
9 /**
10 * Created by IntelliJ IDEA.
11 * User: maheswarang
12 * Date: 4/10/12
13 * Time: 1:56 PM
14 * To change this template use File | Settings | File Templates.
15 */
16 public class OleOrderRecords {
17 private List<OleOrderRecord> records = new ArrayList<OleOrderRecord>();
18
19 public List<OleOrderRecord> getRecords() {
20 return records;
21 }
22
23 public void setRecords(List<OleOrderRecord> records) {
24 this.records = records;
25 }
26 }