37 lines
611 B
Java
37 lines
611 B
Java
|
package com.baeldung.model;
|
||
|
|
||
|
public class Message {
|
||
|
private String from;
|
||
|
private String to;
|
||
|
private String content;
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return super.toString();
|
||
|
}
|
||
|
|
||
|
public String getFrom() {
|
||
|
return from;
|
||
|
}
|
||
|
|
||
|
public void setFrom(String from) {
|
||
|
this.from = from;
|
||
|
}
|
||
|
|
||
|
public String getTo() {
|
||
|
return to;
|
||
|
}
|
||
|
|
||
|
public void setTo(String to) {
|
||
|
this.to = to;
|
||
|
}
|
||
|
|
||
|
public String getContent() {
|
||
|
return content;
|
||
|
}
|
||
|
|
||
|
public void setContent(String content) {
|
||
|
this.content = content;
|
||
|
}
|
||
|
}
|