| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
package org.kuali.student.r2.lum.program.dto; |
| 12 | |
|
| 13 | |
import java.io.Serializable; |
| 14 | |
import java.util.List; |
| 15 | |
|
| 16 | |
import javax.xml.bind.annotation.*; |
| 17 | |
|
| 18 | |
|
| 19 | |
import org.kuali.student.r2.lum.program.dto.assembly.ProgramAtpAssembly; |
| 20 | |
import org.kuali.student.r2.lum.program.dto.assembly.ProgramBasicOrgAssembly; |
| 21 | |
import org.kuali.student.r2.lum.program.dto.assembly.ProgramCommonAssembly; |
| 22 | |
import org.kuali.student.r2.lum.program.dto.assembly.ProgramIdentifierAssembly; |
| 23 | |
import org.kuali.student.r2.lum.program.dto.assembly.ProgramPublicationAssembly; |
| 24 | |
import org.kuali.student.r2.lum.program.dto.assembly.ProgramRequirementAssembly; |
| 25 | |
import org.kuali.student.r2.lum.program.infc.CoreProgram; |
| 26 | |
import org.w3c.dom.Element; |
| 27 | |
|
| 28 | |
@XmlType(name = "CoreProgramInfo", propOrder = {"id", |
| 29 | |
"typeKey", |
| 30 | |
"stateKey", |
| 31 | |
"version", |
| 32 | |
"descr", |
| 33 | |
"code", |
| 34 | |
"shortTitle", |
| 35 | |
"longTitle", |
| 36 | |
"transcriptTitle", |
| 37 | |
"universityClassification", |
| 38 | |
"startTerm", |
| 39 | |
"endTerm", |
| 40 | |
"endProgramEntryTerm", |
| 41 | |
"divisionsContentOwner", |
| 42 | |
"divisionsStudentOversight", |
| 43 | |
"unitsContentOwner", |
| 44 | |
"unitsStudentOversight", |
| 45 | |
"learningObjectives", |
| 46 | |
"programRequirements", |
| 47 | |
"referenceURL", |
| 48 | |
"catalogDescr", |
| 49 | |
"catalogPublicationTargets", |
| 50 | |
"meta", |
| 51 | |
"attributes", |
| 52 | |
"_futureElements"}) |
| 53 | |
@XmlAccessorType(XmlAccessType.FIELD) |
| 54 | |
public class CoreProgramInfo extends CommonWithCoreProgramInfo |
| 55 | |
implements CoreProgram, |
| 56 | |
ProgramCommonAssembly, |
| 57 | |
ProgramBasicOrgAssembly, |
| 58 | |
ProgramAtpAssembly, |
| 59 | |
ProgramIdentifierAssembly, |
| 60 | |
ProgramPublicationAssembly, |
| 61 | |
ProgramRequirementAssembly, |
| 62 | |
Serializable { |
| 63 | |
|
| 64 | |
private static final long serialVersionUID = 1L; |
| 65 | |
@XmlAnyElement |
| 66 | |
private List<Element> _futureElements; |
| 67 | |
|
| 68 | 0 | public CoreProgramInfo() { |
| 69 | 0 | } |
| 70 | |
|
| 71 | |
public CoreProgramInfo(CoreProgram input) { |
| 72 | 0 | super(input); |
| 73 | 0 | } |
| 74 | |
} |