public boolean equals()

in src/main/java/com/epam/digital/data/platform/excerpt/model/ExcerptEventDto.java [76:87]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ExcerptEventDto that = (ExcerptEventDto) o;
    return requiresSystemSignature == that.requiresSystemSignature && Objects
        .equals(recordId, that.recordId) && Objects.equals(excerptType, that.excerptType)
        && Objects.equals(excerptInputData, that.excerptInputData);
  }