Added quota support

This commit is contained in:
M66B
2020-01-07 17:43:27 +01:00
parent d691bd56f1
commit 65f256a4eb
8 changed files with 2121 additions and 2 deletions

View File

@@ -114,6 +114,9 @@ public class EntityAccount extends EntityOrder implements Serializable {
public Boolean use_date = false;
public String prefix; // namespace, obsolete
public Long quota_usage;
public Long quota_limit;
public Long created;
public Boolean tbd;
public String state;
@@ -297,6 +300,8 @@ public class EntityAccount extends EntityOrder implements Serializable {
this.poll_interval.equals(other.poll_interval) &&
this.partial_fetch == other.partial_fetch &&
this.ignore_size == other.ignore_size &&
Objects.equals(this.quota_usage, other.quota_usage) &&
Objects.equals(this.quota_limit, other.quota_limit) &&
Objects.equals(this.created, other.created) &&
Objects.equals(this.tbd, other.tbd) &&
Objects.equals(this.state, other.state) &&