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

software.amazon.awssdk.aws.greengrass.model.ServiceError 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.Map;
import java.util.Objects;
import java.util.Optional;
import software.amazon.awssdk.eventstreamrpc.model.EventStreamJsonMessage;

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

  public static final ServiceError VOID;

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

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

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

  public ServiceError(String errorMessage) {
    super("ServiceError", errorMessage);
    this.message = Optional.ofNullable(errorMessage);
    this.context = Optional.empty();
  }

  public ServiceError() {
    super("ServiceError", "");
    this.message = Optional.empty();
    this.context = Optional.empty();
  }

  @Override
  public String getErrorTypeString() {
    return "server";
  }

  public String getMessage() {
    if (message.isPresent()) {
      return message.get();
    }
    return null;
  }

  public void setMessage(final String message) {
    this.message = Optional.ofNullable(message);
  }

  public ServiceError withMessage(final String message) {
    setMessage(message);
    return this;
  }

  public Map getContext() {
    if (context.isPresent()) {
      return context.get();
    }
    return null;
  }

  public void setContext(final Map context) {
    this.context = Optional.ofNullable(context);
  }

  public ServiceError withContext(final Map context) {
    setContext(context);
    return this;
  }

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

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

  @Override
  public int hashCode() {
    return Objects.hash(message, context);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy