1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.core.messages.entity; |
17 |
|
|
18 |
|
import javax.persistence.Column; |
19 |
|
import javax.persistence.Entity; |
20 |
|
import javax.persistence.Table; |
21 |
|
|
22 |
|
import org.kuali.student.core.entity.BaseEntity; |
23 |
|
import org.kuali.student.core.entity.KSEntityConstants; |
24 |
|
|
25 |
|
@Entity |
26 |
|
@Table(name = "KSMG_MESSAGE") |
|
|
| 100% |
Uncovered Elements: 0 (16) |
Complexity: 8 |
Complexity Density: 1 |
|
27 |
|
public class MessageEntity extends BaseEntity{ |
28 |
|
|
29 |
|
@Column(name="MSG_ID") |
30 |
|
private String messageId; |
31 |
|
@Column(name="LOCALE") |
32 |
|
private String locale; |
33 |
|
@Column(name="GRP_NAME") |
34 |
|
private String groupName; |
35 |
|
@Column(name="MSG_VALUE",length=KSEntityConstants.LONG_TEXT_LENGTH) |
36 |
|
private String value; |
37 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
38 |
342
|
public String getLocale() {... |
39 |
342
|
return locale; |
40 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
41 |
356
|
public void setLocale(String locale) {... |
42 |
356
|
this.locale = locale; |
43 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
344
|
public String getGroupName() {... |
45 |
344
|
return groupName; |
46 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
47 |
356
|
public void setGroupName(String groupName) {... |
48 |
356
|
this.groupName = groupName; |
49 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
50 |
331
|
public String getValue() {... |
51 |
331
|
return value; |
52 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
53 |
356
|
public void setValue(String value) {... |
54 |
356
|
this.value = value; |
55 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
56 |
331
|
public String getMessageId() {... |
57 |
331
|
return messageId; |
58 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
59 |
356
|
public void setMessageId(String messageId) {... |
60 |
356
|
this.messageId = messageId; |
61 |
|
} |
62 |
|
|
63 |
|
} |