1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.common.dto;
17
18 import java.io.Serializable;
19
20 import javax.xml.bind.annotation.XmlAccessType;
21 import javax.xml.bind.annotation.XmlAccessorType;
22 import javax.xml.bind.annotation.XmlAttribute;
23 import javax.xml.bind.annotation.XmlElement;
24
25
26
27
28
29
30
31
32
33
34 @XmlAccessorType(XmlAccessType.FIELD)
35 public class CurrencyAmountInfo implements Serializable {
36
37 private static final long serialVersionUID = 1L;
38
39 @XmlAttribute
40 private String id;
41
42 @XmlElement
43 private String currencyTypeKey;
44
45 @XmlElement
46 private Integer currencyQuantity;
47
48 @XmlElement
49 private MetaInfo metaInfo;
50
51
52
53
54 public String getCurrencyTypeKey() {
55 return currencyTypeKey;
56 }
57
58 public void setCurrencyTypeKey(String currencyTypeKey) {
59 this.currencyTypeKey = currencyTypeKey;
60 }
61
62
63
64
65 public Integer getCurrencyQuantity() {
66 return currencyQuantity;
67 }
68
69 public void setCurrencyQuantity(Integer currencyQuantity) {
70 this.currencyQuantity = currencyQuantity;
71 }
72
73
74
75
76 public String getId() {
77 return id;
78 }
79
80 public void setId(String id) {
81 this.id = id;
82 }
83
84
85
86
87
88
89 public MetaInfo getMetaInfo() {
90 return metaInfo;
91 }
92
93 public void setMetaInfo(MetaInfo metaInfo) {
94 this.metaInfo = metaInfo;
95 }
96 }