first commit
This commit is contained in:
21
hrmsEjb/wenrgise/common/utility/MessageKey.java
Normal file
21
hrmsEjb/wenrgise/common/utility/MessageKey.java
Normal file
@@ -0,0 +1,21 @@
|
||||
package wenrgise.common.utility;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class MessageKey implements Serializable {
|
||||
private String key;
|
||||
|
||||
public MessageKey() {}
|
||||
|
||||
public MessageKey(String key) {
|
||||
this.key = key;
|
||||
}
|
||||
|
||||
public String getKey() {
|
||||
return this.key;
|
||||
}
|
||||
|
||||
public void setKey(String newKey) {
|
||||
this.key = newKey;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user