Added operation state

This commit is contained in:
M66B
2019-05-11 21:04:27 +02:00
parent 1fb2e775d1
commit c00eac14f4
7 changed files with 1806 additions and 17 deletions

View File

@@ -67,6 +67,7 @@ public class EntityOperation {
public String args;
@NonNull
public Long created;
public String state;
public String error;
static final String ADD = "add";
@@ -285,6 +286,7 @@ public class EntityOperation {
this.name.equals(other.name) &&
this.args.equals(other.args) &&
this.created.equals(other.created) &&
Objects.equals(this.state, other.state) &&
Objects.equals(this.error, other.error));
} else
return false;