View Javadoc

1   /*
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
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       * Constructs a new GPAInfo from another GPA.
63       *
64       * @param gpa the GPA to copy
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 }