1 package org.kuali.ole.ingest.pojo; 2 3 import java.util.List; 4 5 /** 6 * Created with IntelliJ IDEA. 7 * User: vivekb 8 * Date: 6/27/12 9 * Time: 2:57 PM 10 * To change this template use File | Settings | File Templates. 11 */ 12 public class Krms { 13 private List<OleAgenda> oleAgendaList; 14 /** 15 * Gets the oleAgendaList attribute. 16 * @return Returns the oleAgendaList. 17 */ 18 public List<OleAgenda> getOleAgendaList() { 19 return oleAgendaList; 20 } 21 /** 22 * Sets the oleAgendaList attribute value. 23 * @param oleAgendaList The oleAgendaList to set. 24 */ 25 public void setOleAgendaList(List<OleAgenda> oleAgendaList) { 26 this.oleAgendaList = oleAgendaList; 27 } 28 }