Show account capabilities

This commit is contained in:
M66B
2021-08-07 17:06:11 +02:00
parent 24bc078cf8
commit b1cc2e50b5
9 changed files with 2576 additions and 13 deletions

View File

@@ -150,6 +150,7 @@ public class EntityAccount extends EntityOrder implements Serializable {
public Long last_connected;
public Long backoff_until;
public Long max_size;
public String capabilities;
public Boolean capability_idle;
public Boolean capability_utf8;
@@ -398,6 +399,7 @@ public class EntityAccount extends EntityOrder implements Serializable {
Objects.equals(this.last_connected, other.last_connected) &&
Objects.equals(this.backoff_until, other.backoff_until) &&
Objects.equals(this.max_size, other.max_size) &&
Objects.equals(this.capabilities, other.capabilities) &&
Objects.equals(this.capability_idle, other.capability_idle) &&
Objects.equals(this.capability_utf8, other.capability_utf8));
} else