public boolean equals()

in src/main/java/com/epam/digital/data/platform/excerpt/api/model/CephObjectWrapper.java [42:51]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    CephObjectWrapper that = (CephObjectWrapper) o;
    return cephObject.equals(that.cephObject) && excerptType.equals(that.excerptType);
  }