public boolean equals()

in src/main/java/com/epam/digital/data/platform/report/model/DataSource.java [83:95]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    DataSource that = (DataSource) o;
    return id == that.id && Objects.equals(name, that.name) && Objects
        .equals(queueName, that.queueName) && Objects.equals(syntax, that.syntax)
        && Objects.equals(type, that.type) && Objects
        .equals(options, that.options);
  }