public boolean equals()

in amazon-sns-trigger-server/src/main/java/jetbrains/buildServer/clouds/amazon/sns/trigger/dto/SnsNotificationDto.java [116:124]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    SnsNotificationDto that = (SnsNotificationDto)o;
    return Objects.equals(myUnsubscribeUrl, that.myUnsubscribeUrl) && Objects.equals(myMessageId, that.myMessageId) &&
           Objects.equals(mySubscriptionArn, that.mySubscriptionArn) && Objects.equals(mySubject, that.mySubject) &&
           Objects.equals(myMessage, that.myMessage) && Objects.equals(myTimestamp, that.myTimestamp) &&
           Objects.equals(myAttributes, that.myAttributes) && Objects.equals(myTopic, that.myTopic);
  }