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