001 package org.kuali.ole.ingest.pojo;
002
003 import java.util.List;
004
005 /**
006 * Krms is a business object class for Krms
007 */
008 public class Krms {
009 private List<OleAgenda> oleAgendaList;
010 /**
011 * Gets the oleAgendaList attribute.
012 * @return Returns the oleAgendaList.
013 */
014 public List<OleAgenda> getOleAgendaList() {
015 return oleAgendaList;
016 }
017 /**
018 * Sets the oleAgendaList attribute value.
019 * @param oleAgendaList The oleAgendaList to set.
020 */
021 public void setOleAgendaList(List<OleAgenda> oleAgendaList) {
022 this.oleAgendaList = oleAgendaList;
023 }
024 }