1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.enrollment.class1.krms.dto;
17
18 import org.kuali.rice.krms.dto.AgendaEditor;
19 import org.kuali.student.enrollment.class2.courseoffering.dto.CourseOfferingContextBar;
20 import org.kuali.student.lum.lu.ui.krms.dto.LURuleManagementWrapper;
21
22 import java.util.ArrayList;
23 import java.util.List;
24
25
26
27
28 public class AORuleManagementWrapper extends CORuleManagementWrapper {
29
30 private List<AgendaEditor> cluAgendas = new ArrayList<AgendaEditor>();
31
32 public List<AgendaEditor> getCluAgendas() {
33 return cluAgendas;
34 }
35
36 public void setCluAgendas(List<AgendaEditor> cluAgendas) {
37 this.cluAgendas = cluAgendas;
38 }
39
40 }