All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.camunda.connector.sns.outbound.model.SnsConnectorResult Maven / Gradle / Ivy

There is a newer version: 8.6.0-alpha4
Show newest version
/*
 * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
 * under one or more contributor license agreements. Licensed under a proprietary license.
 * See the License.txt file for more information. You may not use this file
 * except in compliance with the proprietary license.
 */
package io.camunda.connector.sns.outbound.model;

import java.util.Objects;

public class SnsConnectorResult {

  private String messageId;

  public SnsConnectorResult() {}

  public SnsConnectorResult(String messageId) {
    this.messageId = messageId;
  }

  public String getMessageId() {
    return messageId;
  }

  public void setMessageId(String messageId) {
    this.messageId = messageId;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    SnsConnectorResult that = (SnsConnectorResult) o;
    return messageId.equals(that.messageId);
  }

  @Override
  public int hashCode() {
    return Objects.hash(messageId);
  }

  @Override
  public String toString() {
    return "SnsConnectorResult{" + "messageId='" + messageId + '\'' + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy