Merge branch 'master' of https://github.com/ivanp81/tutorials into ivanp81-master

This commit is contained in:
David Morley
2016-05-12 05:30:15 -05:00
9 changed files with 3053 additions and 1 deletions
@@ -0,0 +1,15 @@
package com.baeldung.model;
public class Message {
private String from;
private String text;
public String getText() {
return text;
}
public String getFrom() {
return from;
}
}
@@ -0,0 +1,27 @@
package com.baeldung.model;
public class OutputMessage {
private String from;
private String text;
private String time;
public OutputMessage(final String from, final String text, final String time) {
this.from = from;
this.text = text;
this.time = time;
}
public String getText() {
return text;
}
public String getTime() {
return time;
}
public String getFrom() {
return from;
}
}