public boolean equals()

in api/src/main/java/org/apache/fineract/cn/identity/api/v1/events/ApplicationSignatureEvent.java [56:62]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    ApplicationSignatureEvent that = (ApplicationSignatureEvent) o;
    return Objects.equals(applicationIdentifier, that.applicationIdentifier) &&
            Objects.equals(keyTimestamp, that.keyTimestamp);
  }