public boolean equals()

in alpha/alpha-spec-tcc-db/src/main/java/org/apache/servicecomb/pack/alpha/spec/tcc/db/jpa/TccTxEvent.java [146:165]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    TccTxEvent that = (TccTxEvent) 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(methodInfo, that.methodInfo) &&
        Objects.equals(txType, that.txType) &&
        Objects.equals(status, that.status) &&
        Objects.equals(creationTime, that.creationTime) &&
        Objects.equals(lastModified, that.lastModified);
  }