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) |
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 8 |
Complexity Density: 1 |
|
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 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
54 |
0
|
public String getCurrencyTypeKey() {... |
55 |
0
|
return currencyTypeKey; |
56 |
|
} |
57 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
58 |
0
|
public void setCurrencyTypeKey(String currencyTypeKey) {... |
59 |
0
|
this.currencyTypeKey = currencyTypeKey; |
60 |
|
} |
61 |
|
|
62 |
|
|
63 |
|
|
64 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
65 |
0
|
public Integer getCurrencyQuantity() {... |
66 |
0
|
return currencyQuantity; |
67 |
|
} |
68 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
69 |
0
|
public void setCurrencyQuantity(Integer currencyQuantity) {... |
70 |
0
|
this.currencyQuantity = currencyQuantity; |
71 |
|
} |
72 |
|
|
73 |
|
|
74 |
|
|
75 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
76 |
0
|
public String getId() {... |
77 |
0
|
return id; |
78 |
|
} |
79 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
80 |
0
|
public void setId(String id) {... |
81 |
0
|
this.id = id; |
82 |
|
} |
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
|
87 |
|
|
88 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
89 |
0
|
public MetaInfo getMetaInfo() {... |
90 |
0
|
return metaInfo; |
91 |
|
} |
92 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
93 |
0
|
public void setMetaInfo(MetaInfo metaInfo) {... |
94 |
0
|
this.metaInfo = metaInfo; |
95 |
|
} |
96 |
|
} |