org.kuali.ole.pojo.bib.Collection Maven / Gradle / Ivy
The newest version!
package org.kuali.ole.pojo.bib;
import java.util.ArrayList;
import java.util.List;
/**
* Created by IntelliJ IDEA.
* User: pvsubrah
* Date: 4/19/12
* Time: 10:32 AM
* To change this template use File | Settings | File Templates.
*/
public class Collection {
private List collection = new ArrayList();
public List getRecords() {
return collection;
}
public void setRecords(List records) {
this.collection = records;
}
}