1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.lum.program.dto; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.ArrayList; |
20 | |
import java.util.HashMap; |
21 | |
import java.util.List; |
22 | |
import java.util.Map; |
23 | |
|
24 | |
import javax.xml.bind.annotation.XmlAccessType; |
25 | |
import javax.xml.bind.annotation.XmlAccessorType; |
26 | |
import javax.xml.bind.annotation.XmlAttribute; |
27 | |
import javax.xml.bind.annotation.XmlElement; |
28 | |
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; |
29 | |
|
30 | |
import org.kuali.student.core.dto.HasAttributes; |
31 | |
import org.kuali.student.core.dto.Idable; |
32 | |
import org.kuali.student.core.dto.MetaInfo; |
33 | |
import org.kuali.student.core.dto.RichTextInfo; |
34 | |
import org.kuali.student.core.versionmanagement.dto.VersionInfo; |
35 | |
import org.kuali.student.core.ws.binding.JaxbAttributeMapListAdapter; |
36 | |
import org.kuali.student.lum.course.dto.LoDisplayInfo; |
37 | |
import org.kuali.student.lum.lu.dto.AdminOrgInfo; |
38 | |
import org.kuali.student.lum.program.dto.assembly.ProgramAtpAssembly; |
39 | |
import org.kuali.student.lum.program.dto.assembly.ProgramBasicOrgAssembly; |
40 | |
import org.kuali.student.lum.program.dto.assembly.ProgramCodeAssembly; |
41 | |
import org.kuali.student.lum.program.dto.assembly.ProgramCommonAssembly; |
42 | |
import org.kuali.student.lum.program.dto.assembly.ProgramIdentifierAssembly; |
43 | |
import org.kuali.student.lum.program.dto.assembly.ProgramRequirementAssembly; |
44 | |
|
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | |
|
52 | |
|
53 | |
|
54 | |
|
55 | |
@XmlAccessorType(XmlAccessType.FIELD) |
56 | 0 | public class CredentialProgramInfo implements Serializable, Idable, HasAttributes, ProgramCommonAssembly, ProgramIdentifierAssembly, ProgramAtpAssembly, |
57 | |
ProgramCodeAssembly, ProgramBasicOrgAssembly, ProgramRequirementAssembly { |
58 | |
|
59 | |
private static final long serialVersionUID = 1L; |
60 | |
|
61 | |
@XmlElement |
62 | |
private String shortTitle; |
63 | |
|
64 | |
@XmlElement |
65 | |
private String longTitle; |
66 | |
|
67 | |
@XmlElement |
68 | |
private String transcriptTitle; |
69 | |
|
70 | |
@XmlElement |
71 | |
private String programLevel; |
72 | |
|
73 | |
@XmlElement |
74 | |
private String code; |
75 | |
|
76 | |
@XmlElement |
77 | |
private String universityClassification; |
78 | |
|
79 | |
@XmlElement |
80 | |
private AdminOrgInfo institution; |
81 | |
|
82 | |
@XmlElement |
83 | |
private List<String> resultOptions; |
84 | |
|
85 | |
@XmlElement |
86 | |
private String startTerm; |
87 | |
|
88 | |
@XmlElement |
89 | |
private String endTerm; |
90 | |
|
91 | |
@XmlElement |
92 | |
private String endProgramEntryTerm; |
93 | |
|
94 | |
@XmlElement |
95 | |
private List<String> divisionsContentOwner; |
96 | |
|
97 | |
@XmlElement |
98 | |
private List<String> divisionsStudentOversight; |
99 | |
|
100 | |
@XmlElement |
101 | |
private List<String> unitsContentOwner; |
102 | |
|
103 | |
@XmlElement |
104 | |
private List<String> unitsStudentOversight; |
105 | |
|
106 | |
@XmlElement |
107 | |
private RichTextInfo descr; |
108 | |
|
109 | |
@XmlElement |
110 | |
private List<LoDisplayInfo> learningObjectives; |
111 | |
|
112 | |
@XmlElement |
113 | |
private List<String> coreProgramIds; |
114 | |
|
115 | |
@XmlElement |
116 | |
private List<String> programRequirements; |
117 | |
|
118 | |
@XmlElement |
119 | |
@XmlJavaTypeAdapter(JaxbAttributeMapListAdapter.class) |
120 | |
private Map<String, String> attributes; |
121 | |
|
122 | |
@XmlElement |
123 | |
private MetaInfo metaInfo; |
124 | |
|
125 | |
@XmlElement |
126 | |
private VersionInfo versionInfo; |
127 | |
|
128 | |
@XmlAttribute |
129 | |
private String credentialProgramType; |
130 | |
|
131 | |
@XmlAttribute |
132 | |
private String state; |
133 | |
|
134 | |
@XmlAttribute |
135 | |
private String id; |
136 | |
|
137 | |
public List<String> getCoreProgramIds() { |
138 | 0 | return coreProgramIds; |
139 | |
} |
140 | |
|
141 | |
public void setCoreProgramIds(List<String> coreProgramIds) { |
142 | 0 | this.coreProgramIds = coreProgramIds; |
143 | 0 | } |
144 | |
|
145 | |
|
146 | |
|
147 | |
|
148 | |
public List<String> getProgramRequirements() { |
149 | 0 | if (programRequirements == null) { |
150 | 0 | programRequirements = new ArrayList<String>(0); |
151 | |
} |
152 | 0 | return programRequirements; |
153 | |
} |
154 | |
|
155 | |
public void setProgramRequirements(List<String> programRequirements) { |
156 | 0 | this.programRequirements = programRequirements; |
157 | 0 | } |
158 | |
|
159 | |
|
160 | |
|
161 | |
|
162 | |
@Override |
163 | |
public Map<String, String> getAttributes() { |
164 | 0 | if (attributes == null) { |
165 | 0 | attributes = new HashMap<String, String>(); |
166 | |
} |
167 | 0 | return attributes; |
168 | |
} |
169 | |
|
170 | |
@Override |
171 | |
public void setAttributes(Map<String, String> attributes) { |
172 | 0 | this.attributes = attributes; |
173 | 0 | } |
174 | |
|
175 | |
|
176 | |
|
177 | |
|
178 | |
public MetaInfo getMetaInfo() { |
179 | 0 | return metaInfo; |
180 | |
} |
181 | |
|
182 | |
public void setMetaInfo(MetaInfo metaInfo) { |
183 | 0 | this.metaInfo = metaInfo; |
184 | 0 | } |
185 | |
|
186 | |
|
187 | |
public VersionInfo getVersionInfo() { |
188 | 0 | return versionInfo; |
189 | |
} |
190 | |
|
191 | |
public void setVersionInfo(VersionInfo versionInfo) { |
192 | 0 | this.versionInfo = versionInfo; |
193 | 0 | } |
194 | |
|
195 | |
|
196 | |
|
197 | |
|
198 | |
public String getCredentialProgramType() { |
199 | 0 | return credentialProgramType; |
200 | |
} |
201 | |
|
202 | |
public void setCredentialProgramType(String credentialProgramType) { |
203 | 0 | this.credentialProgramType = credentialProgramType; |
204 | 0 | } |
205 | |
|
206 | |
|
207 | |
|
208 | |
|
209 | |
public String getState() { |
210 | 0 | return state; |
211 | |
} |
212 | |
|
213 | |
public void setState(String state) { |
214 | 0 | this.state = state; |
215 | 0 | } |
216 | |
|
217 | |
|
218 | |
|
219 | |
|
220 | |
@Override |
221 | |
public String getId() { |
222 | 0 | return id; |
223 | |
} |
224 | |
|
225 | |
@Override |
226 | |
public void setId(String id) { |
227 | 0 | this.id = id; |
228 | 0 | } |
229 | |
|
230 | |
|
231 | |
|
232 | |
|
233 | |
public String getShortTitle() { |
234 | 0 | return shortTitle; |
235 | |
} |
236 | |
|
237 | |
public void setShortTitle(String shortTitle) { |
238 | 0 | this.shortTitle = shortTitle; |
239 | 0 | } |
240 | |
|
241 | |
|
242 | |
|
243 | |
|
244 | |
public String getLongTitle() { |
245 | 0 | return longTitle; |
246 | |
} |
247 | |
|
248 | |
public void setLongTitle(String longTitle) { |
249 | 0 | this.longTitle = longTitle; |
250 | 0 | } |
251 | |
|
252 | |
|
253 | |
|
254 | |
|
255 | |
public String getTranscriptTitle() { |
256 | 0 | return transcriptTitle; |
257 | |
} |
258 | |
|
259 | |
public void setTranscriptTitle(String transcriptTitle) { |
260 | 0 | this.transcriptTitle = transcriptTitle; |
261 | 0 | } |
262 | |
|
263 | |
@Override |
264 | |
public String getDiplomaTitle() { |
265 | 0 | return null; |
266 | |
} |
267 | |
|
268 | |
@Override |
269 | |
public void setDiplomaTitle(String diplomaTitle) { |
270 | |
|
271 | 0 | } |
272 | |
|
273 | |
|
274 | |
|
275 | |
|
276 | |
public String getProgramLevel() { |
277 | 0 | return programLevel; |
278 | |
} |
279 | |
|
280 | |
public void setProgramLevel(String programLevel) { |
281 | 0 | this.programLevel = programLevel; |
282 | 0 | } |
283 | |
|
284 | |
|
285 | |
|
286 | |
|
287 | |
public String getCode() { |
288 | 0 | return code; |
289 | |
} |
290 | |
|
291 | |
public void setCode(String code) { |
292 | 0 | this.code = code; |
293 | 0 | } |
294 | |
|
295 | |
|
296 | |
|
297 | |
|
298 | |
public String getUniversityClassification() { |
299 | 0 | return universityClassification; |
300 | |
} |
301 | |
|
302 | |
public void setUniversityClassification(String universityClassification) { |
303 | 0 | this.universityClassification = universityClassification; |
304 | 0 | } |
305 | |
|
306 | |
|
307 | |
|
308 | |
|
309 | |
public AdminOrgInfo getInstitution() { |
310 | 0 | return institution; |
311 | |
} |
312 | |
|
313 | |
public void setInstitution(AdminOrgInfo institution) { |
314 | 0 | this.institution = institution; |
315 | 0 | } |
316 | |
|
317 | |
|
318 | |
|
319 | |
|
320 | |
public List<String> getResultOptions() { |
321 | 0 | return resultOptions; |
322 | |
} |
323 | |
|
324 | |
public void setResultOptions(List<String> resultOptions) { |
325 | 0 | this.resultOptions = resultOptions; |
326 | 0 | } |
327 | |
|
328 | |
|
329 | |
|
330 | |
|
331 | |
public String getStartTerm() { |
332 | 0 | return startTerm; |
333 | |
} |
334 | |
|
335 | |
public void setStartTerm(String startTerm) { |
336 | 0 | this.startTerm = startTerm; |
337 | 0 | } |
338 | |
|
339 | |
|
340 | |
|
341 | |
|
342 | |
public String getEndTerm() { |
343 | 0 | return endTerm; |
344 | |
} |
345 | |
|
346 | |
public void setEndTerm(String endTerm) { |
347 | 0 | this.endTerm = endTerm; |
348 | 0 | } |
349 | |
|
350 | |
|
351 | |
|
352 | |
|
353 | |
public String getEndProgramEntryTerm() { |
354 | 0 | return endProgramEntryTerm; |
355 | |
} |
356 | |
|
357 | |
public void setEndProgramEntryTerm(String endProgramEntryTerm) { |
358 | 0 | this.endProgramEntryTerm = endProgramEntryTerm; |
359 | 0 | } |
360 | |
|
361 | |
|
362 | |
|
363 | |
|
364 | |
public List<String> getDivisionsContentOwner() { |
365 | 0 | return divisionsContentOwner; |
366 | |
} |
367 | |
|
368 | |
public void setDivisionsContentOwner(List<String> divisionsContentOwner) { |
369 | 0 | this.divisionsContentOwner = divisionsContentOwner; |
370 | 0 | } |
371 | |
|
372 | |
|
373 | |
|
374 | |
|
375 | |
public List<String> getDivisionsStudentOversight() { |
376 | 0 | return divisionsStudentOversight; |
377 | |
} |
378 | |
|
379 | |
public void setDivisionsStudentOversight(List<String> divisionsStudentOversight) { |
380 | 0 | this.divisionsStudentOversight = divisionsStudentOversight; |
381 | 0 | } |
382 | |
|
383 | |
|
384 | |
|
385 | |
|
386 | |
public List<String> getUnitsContentOwner() { |
387 | 0 | return unitsContentOwner; |
388 | |
} |
389 | |
|
390 | |
public void setUnitsContentOwner(List<String> unitsContentOwner) { |
391 | 0 | this.unitsContentOwner = unitsContentOwner; |
392 | 0 | } |
393 | |
|
394 | |
|
395 | |
|
396 | |
|
397 | |
public List<String> getUnitsStudentOversight() { |
398 | 0 | return unitsStudentOversight; |
399 | |
} |
400 | |
|
401 | |
public void setUnitsStudentOversight(List<String> unitsStudentOversight) { |
402 | 0 | this.unitsStudentOversight = unitsStudentOversight; |
403 | 0 | } |
404 | |
|
405 | |
|
406 | |
|
407 | |
|
408 | |
public RichTextInfo getDescr() { |
409 | 0 | return descr; |
410 | |
} |
411 | |
|
412 | |
public void setDescr(RichTextInfo descr) { |
413 | 0 | this.descr = descr; |
414 | 0 | } |
415 | |
|
416 | |
|
417 | |
|
418 | |
|
419 | |
public List<LoDisplayInfo> getLearningObjectives() { |
420 | 0 | return learningObjectives; |
421 | |
} |
422 | |
|
423 | |
public void setLearningObjectives(List<LoDisplayInfo> learningObjectives) { |
424 | 0 | this.learningObjectives = learningObjectives; |
425 | 0 | } |
426 | |
|
427 | |
@Override |
428 | |
public String getType() { |
429 | 0 | return credentialProgramType; |
430 | |
} |
431 | |
|
432 | |
@Override |
433 | |
public void setType(String type) { |
434 | 0 | this.credentialProgramType = type; |
435 | 0 | } |
436 | |
|
437 | |
@Override |
438 | |
public String getCip2000Code() { |
439 | 0 | return null; |
440 | |
} |
441 | |
|
442 | |
@Override |
443 | |
public void setCip2000Code(String cip2000Code) { |
444 | |
|
445 | 0 | } |
446 | |
|
447 | |
@Override |
448 | |
public String getCip2010Code() { |
449 | 0 | return null; |
450 | |
} |
451 | |
|
452 | |
@Override |
453 | |
public void setCip2010Code(String cip2010Code) { |
454 | |
|
455 | 0 | } |
456 | |
|
457 | |
@Override |
458 | |
public String getHegisCode() { |
459 | 0 | return null; |
460 | |
} |
461 | |
|
462 | |
@Override |
463 | |
public void setHegisCode(String hegisCode) { |
464 | |
|
465 | 0 | } |
466 | |
|
467 | |
@Override |
468 | |
public String getSelectiveEnrollmentCode() { |
469 | 0 | return null; |
470 | |
} |
471 | |
|
472 | |
@Override |
473 | |
public void setSelectiveEnrollmentCode(String selectiveEnrollmentCode) { |
474 | |
|
475 | 0 | } |
476 | |
} |