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.common.entity.BaseEntity; |
23 | |
import org.kuali.student.common.entity.KSEntityConstants; |
24 | |
|
25 | |
@Entity |
26 | |
@Table(name = "KSMG_MESSAGE") |
27 | 0 | 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 | |
|
38 | |
public String getLocale() { |
39 | 0 | return locale; |
40 | |
} |
41 | |
public void setLocale(String locale) { |
42 | 0 | this.locale = locale; |
43 | 0 | } |
44 | |
public String getGroupName() { |
45 | 0 | return groupName; |
46 | |
} |
47 | |
public void setGroupName(String groupName) { |
48 | 0 | this.groupName = groupName; |
49 | 0 | } |
50 | |
public String getValue() { |
51 | 0 | return value; |
52 | |
} |
53 | |
public void setValue(String value) { |
54 | 0 | this.value = value; |
55 | 0 | } |
56 | |
public String getMessageId() { |
57 | 0 | return messageId; |
58 | |
} |
59 | |
public void setMessageId(String messageId) { |
60 | 0 | this.messageId = messageId; |
61 | 0 | } |
62 | |
|
63 | |
} |