1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.lum.course.dto;
17
18 import java.io.Serializable;
19 import java.util.ArrayList;
20 import java.util.List;
21
22 import javax.xml.bind.annotation.XmlAccessType;
23 import javax.xml.bind.annotation.XmlAccessorType;
24 import javax.xml.bind.annotation.XmlElement;
25
26 import org.kuali.student.lum.lo.dto.LoCategoryInfo;
27 import org.kuali.student.lum.lo.dto.LoInfo;
28
29
30
31
32
33
34
35
36
37
38 @XmlAccessorType(XmlAccessType.FIELD)
39 public class LoDisplayInfo implements Serializable {
40
41 private static final long serialVersionUID = 1L;
42
43 @XmlElement
44 private LoInfo loInfo;
45
46 @XmlElement
47 private List<LoDisplayInfo> loDisplayInfoList;
48
49 @XmlElement
50 private String parentRelType;
51
52 @XmlElement
53 private String parentLoRelationid;
54
55 @XmlElement
56 private List<LoCategoryInfo> loCategoryInfoList;
57
58
59
60
61 public LoInfo getLoInfo() {
62 return loInfo;
63 }
64
65 public void setLoInfo(LoInfo loInfo) {
66 this.loInfo = loInfo;
67 }
68
69
70
71
72 public List<LoDisplayInfo> getLoDisplayInfoList() {
73 if (loDisplayInfoList == null) {
74 loDisplayInfoList = new ArrayList<LoDisplayInfo>(0);
75 }
76 return loDisplayInfoList;
77 }
78
79 public void setLoDisplayInfoList(List<LoDisplayInfo> loDisplayInfoList) {
80 this.loDisplayInfoList = loDisplayInfoList;
81 }
82
83
84
85
86 public String getParentRelType() {
87 return parentRelType;
88 }
89
90 public void setParentRelType(String parentRelType) {
91 this.parentRelType = parentRelType;
92 }
93
94
95
96
97 public String getParentLoRelationid() {
98 return parentLoRelationid;
99 }
100
101 public void setParentLoRelationid(String parentLoRelationid) {
102 this.parentLoRelationid = parentLoRelationid;
103 }
104
105
106
107
108 public List<LoCategoryInfo> getLoCategoryInfoList() {
109 if (loCategoryInfoList == null) {
110 loCategoryInfoList = new ArrayList<LoCategoryInfo>(0);
111 }
112 return loCategoryInfoList;
113 }
114
115 public void setLoCategoryInfoList(List<LoCategoryInfo> loCategoryInfoList) {
116 this.loCategoryInfoList = loCategoryInfoList;
117 }
118 }