1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.lum.lu.dto; |
17 |
|
|
18 |
|
import java.io.Serializable; |
19 |
|
import java.util.ArrayList; |
20 |
|
import java.util.HashMap; |
21 |
|
import java.util.List; |
22 |
|
import java.util.Map; |
23 |
|
|
24 |
|
import javax.xml.bind.annotation.XmlAccessType; |
25 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
26 |
|
import javax.xml.bind.annotation.XmlAttribute; |
27 |
|
import javax.xml.bind.annotation.XmlElement; |
28 |
|
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; |
29 |
|
|
30 |
|
import org.kuali.student.common.dto.HasAttributes; |
31 |
|
import org.kuali.student.common.dto.MetaInfo; |
32 |
|
import org.kuali.student.common.dto.RichTextInfo; |
33 |
|
import org.kuali.student.core.ws.binding.JaxbAttributeMapListAdapter; |
34 |
|
|
35 |
|
|
36 |
|
|
37 |
|
|
38 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 0% |
Uncovered Elements: 28 (28) |
Complexity: 12 |
Complexity Density: 0.86 |
|
39 |
|
public class CluFeeInfo implements Serializable, HasAttributes { |
40 |
|
|
41 |
|
private static final long serialVersionUID = 1L; |
42 |
|
|
43 |
|
@XmlAttribute |
44 |
|
private String id; |
45 |
|
|
46 |
|
@XmlElement |
47 |
|
private RichTextInfo descr; |
48 |
|
|
49 |
|
@XmlElement |
50 |
|
private List<CluFeeRecordInfo> cluFeeRecords; |
51 |
|
|
52 |
|
@XmlElement |
53 |
|
@XmlJavaTypeAdapter(JaxbAttributeMapListAdapter.class) |
54 |
|
private Map<String,String> attributes; |
55 |
|
|
56 |
|
@XmlElement |
57 |
|
private MetaInfo metaInfo; |
58 |
|
|
59 |
|
|
60 |
|
|
61 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
62 |
0
|
public Map<String,String> getAttributes() {... |
63 |
0
|
if (attributes == null) { |
64 |
0
|
attributes = new HashMap<String,String>(); |
65 |
|
} |
66 |
0
|
return attributes; |
67 |
|
} |
68 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
69 |
0
|
public void setAttributes(Map<String,String> attributes) {... |
70 |
0
|
this.attributes = attributes; |
71 |
|
} |
72 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
73 |
0
|
public List<CluFeeRecordInfo> getCluFeeRecords() {... |
74 |
0
|
if(cluFeeRecords == null){ |
75 |
0
|
cluFeeRecords = new ArrayList<CluFeeRecordInfo>(0); |
76 |
|
} |
77 |
0
|
return cluFeeRecords; |
78 |
|
} |
79 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
80 |
0
|
public void setCluFeeRecords(List<CluFeeRecordInfo> cluFeeRecords) {... |
81 |
0
|
this.cluFeeRecords = cluFeeRecords; |
82 |
|
} |
83 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
84 |
0
|
public String getId() {... |
85 |
0
|
return id; |
86 |
|
} |
87 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
88 |
0
|
public void setId(String id) {... |
89 |
0
|
this.id = id; |
90 |
|
} |
91 |
|
|
92 |
|
|
93 |
|
|
94 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
95 |
0
|
public RichTextInfo getDescr() {... |
96 |
0
|
return descr; |
97 |
|
} |
98 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
99 |
0
|
public void setDescr(RichTextInfo descr) {... |
100 |
0
|
this.descr = descr; |
101 |
|
} |
102 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
103 |
0
|
public MetaInfo getMetaInfo() {... |
104 |
0
|
return metaInfo; |
105 |
|
} |
106 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
107 |
0
|
public void setMetaInfo(MetaInfo metaInfo) {... |
108 |
0
|
this.metaInfo = metaInfo; |
109 |
|
} |
110 |
|
} |