1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.enrollment.academicrecord.dto;
17
18 import org.kuali.student.enrollment.academicrecord.infc.GPA;
19 import org.kuali.student.r2.common.dto.IdNamelessEntityInfo;
20 import org.w3c.dom.Element;
21
22 import javax.xml.bind.annotation.XmlAccessType;
23 import javax.xml.bind.annotation.XmlAccessorType;
24 import javax.xml.bind.annotation.XmlAnyElement;
25 import javax.xml.bind.annotation.XmlElement;
26 import javax.xml.bind.annotation.XmlType;
27 import java.io.Serializable;
28 import java.util.List;
29
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "GPAInfo", propOrder = {
32 "id", "meta", "attributes",
33 "value", "calculationTypeKey", "scaleKey",
34 "typeKey", "stateKey", "_futureElements"})
35
36 public class GPAInfo
37 extends IdNamelessEntityInfo
38 implements GPA, Serializable {
39
40 private static final long serialVersionUID = 1L;
41
42 @XmlElement
43 private String value;
44
45 @XmlElement
46 private String calculationTypeKey;
47
48 @XmlElement
49 private String scaleKey;
50
51 @XmlAnyElement
52 List<Element> _futureElements;
53
54 public GPAInfo() {
55 value = null;
56 calculationTypeKey = null;
57 scaleKey = null;
58 _futureElements = null;
59 }
60
61
62
63
64
65
66 public GPAInfo(GPA gpa) {
67 super(gpa);
68 this.value = gpa.getValue();
69 this.calculationTypeKey = gpa.getCalculationTypeKey();
70 this.scaleKey = gpa.getScaleKey();
71 _futureElements = null;
72 }
73
74 @Override
75 public String getValue() {
76 return value;
77 }
78
79 public void setValue(String value) {
80 this.value = value;
81 }
82
83 @Override
84 public String getCalculationTypeKey() {
85 return calculationTypeKey;
86 }
87
88 public void setCalculationTypeKey(String calculationTypeKey) {
89 this.calculationTypeKey = calculationTypeKey;
90 }
91
92 @Override
93 public String getScaleKey() {
94 return scaleKey;
95 }
96
97 public void setScaleKey(String scaleKey) {
98 this.scaleKey = scaleKey;
99 }
100 }