allowed MailDataModel without link to account

This commit is contained in:
jomu
2017-01-07 12:50:40 +00:00
parent 1ea84ef84d
commit 48a7cc142c

View File

@ -13,6 +13,11 @@ public class MailDatamodel {
private final AccountEntity account;
private final Map<String,String> parameter;
public MailDatamodel() {
this.account = null;
this.parameter = new HashMap<>();
}
public MailDatamodel(AccountEntity account) {
this.parameter = new HashMap<>();
this.account = account;