1 package org.kuali.ole.ingest.pojo;
2
3 import java.util.List;
4
5 /**
6 * Krms is a business object class for Krms
7 */
8 public class Krms {
9 private List<OleAgenda> oleAgendaList;
10 /**
11 * Gets the oleAgendaList attribute.
12 * @return Returns the oleAgendaList.
13 */
14 public List<OleAgenda> getOleAgendaList() {
15 return oleAgendaList;
16 }
17 /**
18 * Sets the oleAgendaList attribute value.
19 * @param oleAgendaList The oleAgendaList to set.
20 */
21 public void setOleAgendaList(List<OleAgenda> oleAgendaList) {
22 this.oleAgendaList = oleAgendaList;
23 }
24 }