public boolean equals()

in src/main/java/com/epam/digital/data/platform/bphistory/model/HistoryProcess.java [141:159]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    HistoryProcess that = (HistoryProcess) o;
    return Objects.equals(processInstanceId, that.processInstanceId)
        && Objects.equals(superProcessInstanceId, that.superProcessInstanceId)
        && Objects.equals(processDefinitionId, that.processDefinitionId)
        && Objects.equals(processDefinitionKey, that.processDefinitionKey)
        && Objects.equals(processDefinitionName, that.processDefinitionName)
        && Objects.equals(businessKey, that.businessKey) && Objects.equals(
        startTime, that.startTime) && Objects.equals(endTime, that.endTime)
        && Objects.equals(startUserId, that.startUserId) && Objects.equals(state,
        that.state) && Objects.equals(excerptId, that.excerptId)
        && Objects.equals(completionResult, that.completionResult);
  }