| 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.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 |
|
import javax.xml.bind.annotation.XmlRootElement; |
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
| 33 |
|
@XmlRootElement(name = "message") |
|
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 8 |
Complexity Density: 1 |
|
| 34 |
|
public class Message implements Serializable{ |
| 35 |
|
private static final long serialVersionUID = 1L; |
| 36 |
|
|
| 37 |
|
@XmlAttribute(required = true) |
| 38 |
|
protected String locale; |
| 39 |
|
@XmlAttribute(required = true) |
| 40 |
|
protected String groupName; |
| 41 |
|
@XmlAttribute(required = true) |
| 42 |
|
protected String id; |
| 43 |
|
@XmlElement(name = "value", required = true) |
| 44 |
|
protected String value; |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 45 |
0
|
public String getLocale() {... |
| 46 |
0
|
return locale; |
| 47 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 48 |
0
|
public void setLocale(String locale) {... |
| 49 |
0
|
this.locale = locale; |
| 50 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 51 |
0
|
public String getGroupName() {... |
| 52 |
0
|
return groupName; |
| 53 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 54 |
0
|
public void setGroupName(String groupName) {... |
| 55 |
0
|
this.groupName = groupName; |
| 56 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 57 |
0
|
public String getId() {... |
| 58 |
0
|
return id; |
| 59 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 60 |
0
|
public void setId(String id) {... |
| 61 |
0
|
this.id = id; |
| 62 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 63 |
0
|
public String getValue() {... |
| 64 |
0
|
return value; |
| 65 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 66 |
0
|
public void setValue(String value) {... |
| 67 |
0
|
this.value = value; |
| 68 |
|
} |
| 69 |
|
|
| 70 |
|
|
| 71 |
|
} |