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

software.amazon.awssdk.aws.greengrass.model.PublishToTopicRequest Maven / Gradle / Ivy

There is a newer version: 1.21.0
Show newest version
/**
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 *
 * This file is generated.
 */

package software.amazon.awssdk.aws.greengrass.model;

import com.google.gson.annotations.Expose;
import java.lang.Object;
import java.lang.Override;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import software.amazon.awssdk.eventstreamrpc.model.EventStreamJsonMessage;

public class PublishToTopicRequest implements EventStreamJsonMessage {
  public static final String APPLICATION_MODEL_TYPE = "aws.greengrass#PublishToTopicRequest";

  public static final PublishToTopicRequest VOID;

  static {
    VOID = new PublishToTopicRequest() {
      @Override
      public boolean isVoid() {
        return true;
      }
    };
  }

  @Expose(
      serialize = true,
      deserialize = true
  )
  private Optional topic;

  @Expose(
      serialize = true,
      deserialize = true
  )
  private Optional publishMessage;

  public PublishToTopicRequest() {
    this.topic = Optional.empty();
    this.publishMessage = Optional.empty();
  }

  /**
   * The topic to publish the message.
   */
  public String getTopic() {
    if (topic.isPresent()) {
      return topic.get();
    }
    return null;
  }

  /**
   * The topic to publish the message.
   */
  public void setTopic(final String topic) {
    this.topic = Optional.ofNullable(topic);
  }

  /**
   * The topic to publish the message.
   */
  public PublishToTopicRequest withTopic(final String topic) {
    setTopic(topic);
    return this;
  }

  /**
   * The message to publish.
   */
  public PublishMessage getPublishMessage() {
    if (publishMessage.isPresent()) {
      return publishMessage.get();
    }
    return null;
  }

  /**
   * The message to publish.
   */
  public void setPublishMessage(final PublishMessage publishMessage) {
    this.publishMessage = Optional.ofNullable(publishMessage);
  }

  /**
   * The message to publish.
   */
  public PublishToTopicRequest withPublishMessage(final PublishMessage publishMessage) {
    setPublishMessage(publishMessage);
    return this;
  }

  @Override
  public String getApplicationModelType() {
    return APPLICATION_MODEL_TYPE;
  }

  @Override
  public boolean equals(Object rhs) {
    if (rhs == null) return false;
    if (!(rhs instanceof PublishToTopicRequest)) return false;
    if (this == rhs) return true;
    final PublishToTopicRequest other = (PublishToTopicRequest)rhs;
    boolean isEquals = true;
    isEquals = isEquals && this.topic.equals(other.topic);
    isEquals = isEquals && this.publishMessage.equals(other.publishMessage);
    return isEquals;
  }

  @Override
  public int hashCode() {
    return Objects.hash(topic, publishMessage);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy