@@ -18,9 +18,6 @@ public class Event {
18
18
@ JsonProperty ("runID" )
19
19
private String runID ;
20
20
21
- @ JsonProperty ("parentID" )
22
- private String parentID ;
23
-
24
21
@ JsonProperty ("status" )
25
22
private EventStatus status ;
26
23
@@ -58,17 +55,6 @@ public String getRunID() {
58
55
return runID ;
59
56
}
60
57
61
- public Event setParentID (String parentID ) {
62
- this .parentID = parentID ;
63
- return this ;
64
- }
65
-
66
- /** The parent event, the cause of this event. */
67
- @ javax .annotation .Nullable
68
- public String getParentID () {
69
- return parentID ;
70
- }
71
-
72
58
public Event setStatus (EventStatus status ) {
73
59
this .status = status ;
74
60
return this ;
@@ -144,7 +130,6 @@ public boolean equals(Object o) {
144
130
return (
145
131
Objects .equals (this .eventID , event .eventID ) &&
146
132
Objects .equals (this .runID , event .runID ) &&
147
- Objects .equals (this .parentID , event .parentID ) &&
148
133
Objects .equals (this .status , event .status ) &&
149
134
Objects .equals (this .type , event .type ) &&
150
135
Objects .equals (this .batchSize , event .batchSize ) &&
@@ -155,7 +140,7 @@ public boolean equals(Object o) {
155
140
156
141
@ Override
157
142
public int hashCode () {
158
- return Objects .hash (eventID , runID , parentID , status , type , batchSize , data , publishedAt );
143
+ return Objects .hash (eventID , runID , status , type , batchSize , data , publishedAt );
159
144
}
160
145
161
146
@ Override
@@ -164,7 +149,6 @@ public String toString() {
164
149
sb .append ("class Event {\n " );
165
150
sb .append (" eventID: " ).append (toIndentedString (eventID )).append ("\n " );
166
151
sb .append (" runID: " ).append (toIndentedString (runID )).append ("\n " );
167
- sb .append (" parentID: " ).append (toIndentedString (parentID )).append ("\n " );
168
152
sb .append (" status: " ).append (toIndentedString (status )).append ("\n " );
169
153
sb .append (" type: " ).append (toIndentedString (type )).append ("\n " );
170
154
sb .append (" batchSize: " ).append (toIndentedString (batchSize )).append ("\n " );
0 commit comments