1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.enrollment.grading.dto; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.List; |
20 | |
|
21 | |
import javax.xml.bind.annotation.XmlAccessType; |
22 | |
import javax.xml.bind.annotation.XmlAccessorType; |
23 | |
import javax.xml.bind.annotation.XmlAnyElement; |
24 | |
import javax.xml.bind.annotation.XmlAttribute; |
25 | |
import javax.xml.bind.annotation.XmlElement; |
26 | |
import javax.xml.bind.annotation.XmlType; |
27 | |
|
28 | |
import org.kuali.student.enrollment.grading.infc.CreditsEarned; |
29 | |
import org.kuali.student.r2.common.dto.HasAttributesAndMetaInfo; |
30 | |
import org.w3c.dom.Element; |
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
@XmlAccessorType(XmlAccessType.FIELD) |
38 | |
@XmlType(name = "CreditsEarnedInfo", propOrder = {"id", "creditGroupId", "credit", "meta", "attributes", "_futureElements"}) |
39 | 0 | public class CreditsEarnedInfo extends HasAttributesAndMetaInfo implements CreditsEarned, Serializable { |
40 | |
|
41 | |
private static final long serialVersionUID = 1L; |
42 | |
|
43 | |
@XmlAttribute |
44 | |
private String id; |
45 | |
|
46 | |
@XmlElement |
47 | |
private String creditGroupId; |
48 | |
|
49 | |
@XmlElement |
50 | |
private String credit; |
51 | |
|
52 | |
@XmlAnyElement |
53 | |
private List<Element> _futureElements; |
54 | |
|
55 | |
public String getId() { |
56 | 0 | return id; |
57 | |
} |
58 | |
|
59 | |
public void setId(String id) { |
60 | 0 | this.id = id; |
61 | 0 | } |
62 | |
|
63 | |
public String getCreditGroupId() { |
64 | 0 | return creditGroupId; |
65 | |
} |
66 | |
|
67 | |
public String getCredit() { |
68 | 0 | return credit; |
69 | |
} |
70 | |
|
71 | |
public void setCreditGroupId(String creditGroupId) { |
72 | 0 | this.creditGroupId = creditGroupId; |
73 | 0 | } |
74 | |
|
75 | |
public void setCredit(String credit) { |
76 | 0 | this.credit = credit; |
77 | 0 | } |
78 | |
} |