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 | |
|
20 | |
|
21 | |
import javax.xml.bind.annotation.XmlAccessType; |
22 | |
import javax.xml.bind.annotation.XmlAccessorType; |
23 | |
import javax.xml.bind.annotation.XmlAttribute; |
24 | |
import javax.xml.bind.annotation.XmlElement; |
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
@XmlAccessorType(XmlAccessType.FIELD) |
37 | 0 | public class SourceInfo implements Serializable { |
38 | |
|
39 | |
private static final long serialVersionUID = 1L; |
40 | |
|
41 | |
@XmlElement |
42 | |
private String academicRecordId; |
43 | |
|
44 | |
@XmlElement |
45 | |
private String achievedLoId; |
46 | |
|
47 | |
@XmlElement |
48 | |
private String assignedCluResultId; |
49 | |
|
50 | |
@XmlElement |
51 | |
private String desc; |
52 | |
|
53 | |
@XmlElement |
54 | |
private String articulationId; |
55 | |
|
56 | |
@XmlElement |
57 | |
private String resultTransformationId; |
58 | |
|
59 | |
|
60 | |
|
61 | |
@XmlAttribute |
62 | |
private String type; |
63 | |
|
64 | |
@XmlAttribute |
65 | |
private String id; |
66 | |
|
67 | |
|
68 | |
|
69 | |
|
70 | |
public String getAcademicRecordId() { |
71 | 0 | return academicRecordId; |
72 | |
} |
73 | |
|
74 | |
public void setAcademicRecordId(String academicRecordId) { |
75 | 0 | this.academicRecordId = academicRecordId; |
76 | 0 | } |
77 | |
|
78 | |
|
79 | |
|
80 | |
|
81 | |
public String getAchievedLoId() { |
82 | 0 | return achievedLoId; |
83 | |
} |
84 | |
|
85 | |
public void setAchievedLoId(String achievedLoId) { |
86 | 0 | this.achievedLoId = achievedLoId; |
87 | 0 | } |
88 | |
|
89 | |
|
90 | |
|
91 | |
|
92 | |
public String getAssignedCluResultId() { |
93 | 0 | return assignedCluResultId; |
94 | |
} |
95 | |
|
96 | |
public void setAssignedCluResultId(String assignedCluResultId) { |
97 | 0 | this.assignedCluResultId = assignedCluResultId; |
98 | 0 | } |
99 | |
|
100 | |
|
101 | |
|
102 | |
|
103 | |
public String getDesc() { |
104 | 0 | return desc; |
105 | |
} |
106 | |
|
107 | |
public void setDesc(String desc) { |
108 | 0 | this.desc = desc; |
109 | 0 | } |
110 | |
|
111 | |
|
112 | |
|
113 | |
|
114 | |
public String getArticulationId() { |
115 | 0 | return articulationId; |
116 | |
} |
117 | |
|
118 | |
public void setArticulationId(String articulationId) { |
119 | 0 | this.articulationId = articulationId; |
120 | 0 | } |
121 | |
|
122 | |
|
123 | |
|
124 | |
|
125 | |
public String getResultTransformationId() { |
126 | 0 | return resultTransformationId; |
127 | |
} |
128 | |
|
129 | |
public void setResultTransformationId(String resultTransformationId) { |
130 | 0 | this.resultTransformationId = resultTransformationId; |
131 | 0 | } |
132 | |
|
133 | |
|
134 | |
|
135 | |
|
136 | |
|
137 | |
|
138 | |
public String getType() { |
139 | 0 | return type; |
140 | |
} |
141 | |
|
142 | |
public void setType(String type) { |
143 | 0 | this.type = type; |
144 | 0 | } |
145 | |
|
146 | |
|
147 | |
|
148 | |
|
149 | |
public String getId() { |
150 | 0 | return id; |
151 | |
} |
152 | |
|
153 | |
public void setId(String id) { |
154 | 0 | this.id = id; |
155 | 0 | } |
156 | |
} |