1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.ksb.messaging.remotedservices;
17
18 import javax.xml.bind.annotation.XmlRootElement;
19
20
21
22
23
24
25
26 @XmlRootElement
27 public class Message {
28
29 private String id;
30 private String subject;
31 private String text;
32 private String recipient;
33 private String sender;
34
35 public Message() { }
36
37
38
39
40 public String getSubject() {
41 return this.subject;
42 }
43
44
45
46
47 public void setSubject(String subject) {
48 this.subject = subject;
49 }
50
51
52
53
54 public String getText() {
55 return this.text;
56 }
57
58
59
60
61 public void setText(String text) {
62 this.text = text;
63 }
64
65
66
67
68 public String getRecipient() {
69 return this.recipient;
70 }
71
72
73
74
75 public void setRecipient(String recipient) {
76 this.recipient = recipient;
77 }
78
79
80
81
82 public String getSender() {
83 return this.sender;
84 }
85
86
87
88
89 public void setSender(String sender) {
90 this.sender = sender;
91 }
92
93
94
95
96 public String getId() {
97 return this.id;
98 }
99
100
101
102
103 public void setId(String id) {
104 this.id = id;
105 }
106
107
108 }