1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.enrollment.classI.lrr.dto; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.ArrayList; |
20 | |
import java.util.Date; |
21 | |
import java.util.HashMap; |
22 | |
import java.util.List; |
23 | |
import java.util.Map; |
24 | |
|
25 | |
import javax.xml.bind.annotation.XmlAccessType; |
26 | |
import javax.xml.bind.annotation.XmlAccessorType; |
27 | |
import javax.xml.bind.annotation.XmlAttribute; |
28 | |
import javax.xml.bind.annotation.XmlElement; |
29 | |
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; |
30 | |
|
31 | |
import org.kuali.student.core.ws.binding.JaxbAttributeMapListAdapter; |
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
@XmlAccessorType(XmlAccessType.FIELD) |
45 | 0 | public class LearningResultRecordInfo implements Serializable { |
46 | |
|
47 | |
private static final long serialVersionUID = 1L; |
48 | |
|
49 | |
@XmlElement |
50 | |
private String personId; |
51 | |
|
52 | |
@XmlElement |
53 | |
private String luiId; |
54 | |
|
55 | |
@XmlElement |
56 | |
private String lprType; |
57 | |
|
58 | |
@XmlAttribute |
59 | |
private String resultUsageTypeKey; |
60 | |
|
61 | |
@XmlElement |
62 | |
private String resultComponentId; |
63 | |
|
64 | |
@XmlElement |
65 | |
private String resultId; |
66 | |
|
67 | |
@XmlElement |
68 | |
private String atpKey; |
69 | |
|
70 | |
@XmlElement |
71 | |
private String lprId; |
72 | |
|
73 | |
@XmlElement |
74 | |
private List<SourceInfo> sourceInfoList; |
75 | |
|
76 | |
@XmlAttribute |
77 | |
private String state; |
78 | |
|
79 | |
@XmlElement |
80 | |
@XmlJavaTypeAdapter(JaxbAttributeMapListAdapter.class) |
81 | |
private Map<String, String> attributes; |
82 | |
|
83 | |
|
84 | |
|
85 | |
@XmlAttribute |
86 | |
private String id; |
87 | |
|
88 | |
|
89 | |
|
90 | |
|
91 | |
public String getPersonId() { |
92 | 0 | return personId; |
93 | |
} |
94 | |
|
95 | |
public void setPersonId(String personId) { |
96 | 0 | this.personId = personId; |
97 | 0 | } |
98 | |
|
99 | |
|
100 | |
|
101 | |
|
102 | |
public String getLuiId() { |
103 | 0 | return luiId; |
104 | |
} |
105 | |
|
106 | |
public void setLuiId(String luiId) { |
107 | 0 | this.luiId = luiId; |
108 | 0 | } |
109 | |
|
110 | |
|
111 | |
|
112 | |
|
113 | |
public String getLprType() { |
114 | 0 | return lprType; |
115 | |
} |
116 | |
|
117 | |
public void setLprType(String lprType) { |
118 | 0 | this.lprType = lprType; |
119 | 0 | } |
120 | |
|
121 | |
|
122 | |
|
123 | |
|
124 | |
public String getResultUsageTypeKey() { |
125 | 0 | return resultUsageTypeKey; |
126 | |
} |
127 | |
|
128 | |
public void setResultUsageTypeKey(String resultUsageTypeKey) { |
129 | 0 | this.resultUsageTypeKey = resultUsageTypeKey; |
130 | 0 | } |
131 | |
|
132 | |
|
133 | |
|
134 | |
|
135 | |
public String getResultComponentId() { |
136 | 0 | return resultComponentId; |
137 | |
} |
138 | |
|
139 | |
public void setResultComponentId(String resultComponentId) { |
140 | 0 | this.resultComponentId = resultComponentId; |
141 | 0 | } |
142 | |
|
143 | |
|
144 | |
|
145 | |
|
146 | |
public String getResultId() { |
147 | 0 | return resultId; |
148 | |
} |
149 | |
|
150 | |
public void setResultId(String resultId) { |
151 | 0 | this.resultId = resultId; |
152 | 0 | } |
153 | |
|
154 | |
|
155 | |
|
156 | |
|
157 | |
public String getAtpKey() { |
158 | 0 | return atpKey; |
159 | |
} |
160 | |
|
161 | |
public void setAtpKey(String atpKey) { |
162 | 0 | this.atpKey = atpKey; |
163 | 0 | } |
164 | |
|
165 | |
|
166 | |
|
167 | |
|
168 | |
public String getLprId() { |
169 | 0 | return lprId; |
170 | |
} |
171 | |
|
172 | |
public void setLprId(String lprId) { |
173 | 0 | this.lprId = lprId; |
174 | 0 | } |
175 | |
|
176 | |
|
177 | |
|
178 | |
|
179 | |
public List<SourceInfo> getSourceInfoList() { |
180 | 0 | if (sourceInfoList == null) { |
181 | 0 | sourceInfoList = new ArrayList<SourceInfo>(0); |
182 | |
} |
183 | 0 | return sourceInfoList; |
184 | |
} |
185 | |
|
186 | |
public void setSourceInfoList(List<SourceInfo> sourceInfoList) { |
187 | 0 | this.sourceInfoList = sourceInfoList; |
188 | 0 | } |
189 | |
|
190 | |
|
191 | |
|
192 | |
|
193 | |
public String getState() { |
194 | 0 | return state; |
195 | |
} |
196 | |
|
197 | |
public void setState(String state) { |
198 | 0 | this.state = state; |
199 | 0 | } |
200 | |
|
201 | |
|
202 | |
|
203 | |
|
204 | |
public Map<String, String> getAttributes() { |
205 | 0 | if (attributes == null) { |
206 | 0 | attributes = new HashMap<String, String>(); |
207 | |
} |
208 | 0 | return attributes; |
209 | |
} |
210 | |
|
211 | |
public void setAttributes(Map<String, String> attributes) { |
212 | 0 | this.attributes = attributes; |
213 | 0 | } |
214 | |
|
215 | |
|
216 | |
|
217 | |
|
218 | |
|
219 | |
public String getId() { |
220 | 0 | return id; |
221 | |
} |
222 | |
|
223 | |
public void setId(String id) { |
224 | 0 | this.id = id; |
225 | 0 | } |
226 | |
} |