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.r2.lum.clu.dto;
17  
18  import java.io.Serializable;
19  import java.util.ArrayList;
20  import java.util.List;
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.XmlAttribute;
26  import javax.xml.bind.annotation.XmlElement;
27  import javax.xml.bind.annotation.XmlType;
28  
29  import org.kuali.student.r2.common.dto.HasAttributesAndMetaInfo;
30  import org.kuali.student.r2.common.dto.RichTextInfo;
31  import org.kuali.student.r2.lum.clu.infc.CluFee;
32  import org.kuali.student.r2.lum.clu.infc.CluFeeRecord;
33  
34  @XmlAccessorType(XmlAccessType.FIELD)
35  @XmlType(name = "CluFeeInfo", propOrder = {"id", "descr", "cluFeeRecords", "attributes", "meta" , "_futureElements" }) 
36  public class CluFeeInfo extends HasAttributesAndMetaInfo implements CluFee, Serializable {
37  
38      private static final long serialVersionUID = 1L;
39  
40      @XmlAttribute
41      private String id;
42  
43      @XmlElement
44      private RichTextInfo descr;
45  
46      @XmlElement
47      private List<CluFeeRecordInfo> cluFeeRecords;
48  
49      @XmlAnyElement
50      private List<Object> _futureElements;  
51  
52      public CluFeeInfo() {
53  
54      }
55  
56      public CluFeeInfo(CluFee cluFee) {
57          super(cluFee);
58          if (null != cluFee) {
59              this.id = cluFee.getId();
60              this.descr = cluFee.getDescr();
61              this.cluFeeRecords = new ArrayList<CluFeeRecordInfo>();
62              for (CluFeeRecord cluFeeRecord : cluFee.getCluFeeRecords()) {
63                  this.cluFeeRecords.add(new CluFeeRecordInfo(cluFeeRecord));
64              }
65          }
66      }
67  
68      @Override
69      public List<CluFeeRecordInfo> getCluFeeRecords() {
70          if (cluFeeRecords == null) {
71              cluFeeRecords = new ArrayList<CluFeeRecordInfo>(0);
72          }
73          return cluFeeRecords;
74      }
75  
76      public void setCluFeeRecords(List<CluFeeRecordInfo> cluFeeRecords) {
77          this.cluFeeRecords = cluFeeRecords;
78      }
79  
80      @Override
81      public String getId() {
82          return id;
83      }
84  
85      public void setId(String id) {
86          this.id = id;
87      }
88  
89      @Override
90      public RichTextInfo getDescr() {
91          return descr;
92      }
93  
94      public void setDescr(RichTextInfo descr) {
95          this.descr = descr;
96      }
97  
98  }