01: package org.claros.intouch.webmail.models;
02:
03: public class MsgRule {
04: private Long id;
05: private String username;
06: private String portion;
07: private String ruleCondition;
08: private String keyword;
09: private String ruleAction;
10: private String destination;
11:
12: public String getDestination() {
13: return destination;
14: }
15:
16: public void setDestination(String destination) {
17: this .destination = destination;
18: }
19:
20: public Long getId() {
21: return id;
22: }
23:
24: public void setId(Long id) {
25: this .id = id;
26: }
27:
28: public String getKeyword() {
29: return keyword;
30: }
31:
32: public void setKeyword(String keyword) {
33: this .keyword = keyword;
34: }
35:
36: public String getPortion() {
37: return portion;
38: }
39:
40: public void setPortion(String portion) {
41: this .portion = portion;
42: }
43:
44: public String getRuleAction() {
45: return ruleAction;
46: }
47:
48: public void setRuleAction(String ruleAction) {
49: this .ruleAction = ruleAction;
50: }
51:
52: public String getRuleCondition() {
53: return ruleCondition;
54: }
55:
56: public void setRuleCondition(String ruleCondition) {
57: this .ruleCondition = ruleCondition;
58: }
59:
60: public String getUsername() {
61: return username;
62: }
63:
64: public void setUsername(String username) {
65: this.username = username;
66: }
67:
68: }
|