Get, store and display append limit

This commit is contained in:
M66B
2020-07-03 09:57:43 +02:00
parent 960f970771
commit d12e7a1d92
9 changed files with 2349 additions and 7 deletions

View File

@@ -139,6 +139,7 @@ public class EntityAccount extends EntityOrder implements Serializable {
public String warning;
public String error;
public Long last_connected;
public Long max_size;
boolean isGmail() {
return "imap.gmail.com".equalsIgnoreCase(host);
@@ -354,7 +355,8 @@ public class EntityAccount extends EntityOrder implements Serializable {
Objects.equals(this.state, other.state) &&
Objects.equals(this.warning, other.warning) &&
Objects.equals(this.error, other.error) &&
Objects.equals(this.last_connected, other.last_connected));
Objects.equals(this.last_connected, other.last_connected) &&
Objects.equals(this.max_size, other.max_size));
} else
return false;
}