in alpha/alpha-spec-tcc-db/src/main/java/org/apache/servicecomb/pack/alpha/spec/tcc/db/jpa/ParticipatedEvent.java [113:129]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ParticipatedEvent that = (ParticipatedEvent) o;
return Objects.equals(globalTxId, that.globalTxId) &&
Objects.equals(localTxId, that.localTxId) &&
Objects.equals(parentTxId, that.parentTxId) &&
Objects.equals(serviceName, that.serviceName) &&
Objects.equals(instanceId, that.instanceId) &&
Objects.equals(confirmMethod, that.confirmMethod) &&
Objects.equals(cancelMethod, that.cancelMethod) &&
Objects.equals(status, that.status);
}