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 | 0 | 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 | 0 | return loInfo; |
63 | |
} |
64 | |
|
65 | |
public void setLoInfo(LoInfo loInfo) { |
66 | 0 | this.loInfo = loInfo; |
67 | 0 | } |
68 | |
|
69 | |
|
70 | |
|
71 | |
|
72 | |
public List<LoDisplayInfo> getLoDisplayInfoList() { |
73 | 0 | if (loDisplayInfoList == null) { |
74 | 0 | loDisplayInfoList = new ArrayList<LoDisplayInfo>(0); |
75 | |
} |
76 | 0 | return loDisplayInfoList; |
77 | |
} |
78 | |
|
79 | |
public void setLoDisplayInfoList(List<LoDisplayInfo> loDisplayInfoList) { |
80 | 0 | this.loDisplayInfoList = loDisplayInfoList; |
81 | 0 | } |
82 | |
|
83 | |
|
84 | |
|
85 | |
|
86 | |
public String getParentRelType() { |
87 | 0 | return parentRelType; |
88 | |
} |
89 | |
|
90 | |
public void setParentRelType(String parentRelType) { |
91 | 0 | this.parentRelType = parentRelType; |
92 | 0 | } |
93 | |
|
94 | |
|
95 | |
|
96 | |
|
97 | |
public String getParentLoRelationid() { |
98 | 0 | return parentLoRelationid; |
99 | |
} |
100 | |
|
101 | |
public void setParentLoRelationid(String parentLoRelationid) { |
102 | 0 | this.parentLoRelationid = parentLoRelationid; |
103 | 0 | } |
104 | |
|
105 | |
|
106 | |
|
107 | |
|
108 | |
public List<LoCategoryInfo> getLoCategoryInfoList() { |
109 | 0 | if (loCategoryInfoList == null) { |
110 | 0 | loCategoryInfoList = new ArrayList<LoCategoryInfo>(0); |
111 | |
} |
112 | 0 | return loCategoryInfoList; |
113 | |
} |
114 | |
|
115 | |
public void setLoCategoryInfoList(List<LoCategoryInfo> loCategoryInfoList) { |
116 | 0 | this.loCategoryInfoList = loCategoryInfoList; |
117 | 0 | } |
118 | |
} |