Added account category to message

This commit is contained in:
M66B
2021-10-04 10:41:03 +02:00
parent b39d2fa147
commit 87d4855113
3 changed files with 11 additions and 5 deletions

View File

@@ -36,6 +36,7 @@ import javax.mail.Address;
public class TupleMessageEx extends EntityMessage {
public Integer accountProtocol;
public String accountName;
public String accountCategory;
public Integer accountColor;
public boolean accountNotify;
public boolean accountLeaveDeleted;
@@ -122,6 +123,7 @@ public class TupleMessageEx extends EntityMessage {
return (super.equals(obj) &&
this.accountProtocol.equals(other.accountProtocol) &&
Objects.equals(this.accountName, other.accountName) &&
Objects.equals(this.accountCategory, other.accountCategory) &&
Objects.equals(this.accountColor, other.accountColor) &&
this.accountNotify == other.accountNotify &&
this.accountLeaveDeleted == other.accountLeaveDeleted &&