1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.common.messages.dto; |
17 |
|
|
18 |
|
import java.util.ArrayList; |
19 |
|
import java.util.List; |
20 |
|
|
21 |
|
import javax.xml.bind.annotation.XmlAccessType; |
22 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
23 |
|
import javax.xml.bind.annotation.XmlElement; |
24 |
|
import javax.xml.bind.annotation.XmlRootElement; |
25 |
|
|
26 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
27 |
|
@XmlRootElement(name = "MessageGroupKeyList") |
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 3 |
Complexity Density: 0.75 |
|
28 |
|
public class MessageGroupKeyList implements java.io.Serializable { |
29 |
|
|
30 |
|
private static final long serialVersionUID = -840422925676029014L; |
31 |
|
|
32 |
|
@XmlElement(name = "messageGroup", required = true) |
33 |
|
protected List<String> messageGroupKeys; |
34 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
35 |
0
|
public List<String> getMessageGroupKeys() {... |
36 |
0
|
if (messageGroupKeys == null) { |
37 |
0
|
messageGroupKeys = new ArrayList<String>(); |
38 |
|
} |
39 |
0
|
return this.messageGroupKeys; |
40 |
|
} |
41 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
42 |
0
|
public void setMessageGroupKeys(List<String> l) {... |
43 |
0
|
messageGroupKeys = l; |
44 |
|
|
45 |
|
} |
46 |
|
} |