BAEL-1772: Argument Matchers (#4323)

This commit is contained in:
Felipe Santiago Corro
2018-06-06 03:08:09 -03:00
committed by maibin
parent be608ae4fb
commit c3eaeeadde
12 changed files with 329 additions and 2 deletions

View File

@@ -0,0 +1,53 @@
package com.baeldung.domain.model;
import java.util.Date;
import java.util.UUID;
public class Message {
private String from;
private String to;
private String text;
private Date date;
private UUID id;
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 getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public Date getDate() {
return date;
}
public void setDate(Date date) {
this.date = date;
}
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
}