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

com.amazonaws.services.iotthingsgraph.model.GetNamespaceDeletionStatusResult Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS IoT Things Graph module holds the client classes that are used for communicating with AWS IoT Things Graph Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2015-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.iotthingsgraph.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 
 * @see AWS API Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class GetNamespaceDeletionStatusResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {

    /**
     * 

* The ARN of the namespace that is being deleted. *

*/ private String namespaceArn; /** *

* The name of the namespace that is being deleted. *

*/ private String namespaceName; /** *

* The status of the deletion request. *

*/ private String status; /** *

* An error code returned by the namespace deletion task. *

*/ private String errorCode; /** *

* An error code returned by the namespace deletion task. *

*/ private String errorMessage; /** *

* The ARN of the namespace that is being deleted. *

* * @param namespaceArn * The ARN of the namespace that is being deleted. */ public void setNamespaceArn(String namespaceArn) { this.namespaceArn = namespaceArn; } /** *

* The ARN of the namespace that is being deleted. *

* * @return The ARN of the namespace that is being deleted. */ public String getNamespaceArn() { return this.namespaceArn; } /** *

* The ARN of the namespace that is being deleted. *

* * @param namespaceArn * The ARN of the namespace that is being deleted. * @return Returns a reference to this object so that method calls can be chained together. */ public GetNamespaceDeletionStatusResult withNamespaceArn(String namespaceArn) { setNamespaceArn(namespaceArn); return this; } /** *

* The name of the namespace that is being deleted. *

* * @param namespaceName * The name of the namespace that is being deleted. */ public void setNamespaceName(String namespaceName) { this.namespaceName = namespaceName; } /** *

* The name of the namespace that is being deleted. *

* * @return The name of the namespace that is being deleted. */ public String getNamespaceName() { return this.namespaceName; } /** *

* The name of the namespace that is being deleted. *

* * @param namespaceName * The name of the namespace that is being deleted. * @return Returns a reference to this object so that method calls can be chained together. */ public GetNamespaceDeletionStatusResult withNamespaceName(String namespaceName) { setNamespaceName(namespaceName); return this; } /** *

* The status of the deletion request. *

* * @param status * The status of the deletion request. * @see NamespaceDeletionStatus */ public void setStatus(String status) { this.status = status; } /** *

* The status of the deletion request. *

* * @return The status of the deletion request. * @see NamespaceDeletionStatus */ public String getStatus() { return this.status; } /** *

* The status of the deletion request. *

* * @param status * The status of the deletion request. * @return Returns a reference to this object so that method calls can be chained together. * @see NamespaceDeletionStatus */ public GetNamespaceDeletionStatusResult withStatus(String status) { setStatus(status); return this; } /** *

* The status of the deletion request. *

* * @param status * The status of the deletion request. * @return Returns a reference to this object so that method calls can be chained together. * @see NamespaceDeletionStatus */ public GetNamespaceDeletionStatusResult withStatus(NamespaceDeletionStatus status) { this.status = status.toString(); return this; } /** *

* An error code returned by the namespace deletion task. *

* * @param errorCode * An error code returned by the namespace deletion task. * @see NamespaceDeletionStatusErrorCodes */ public void setErrorCode(String errorCode) { this.errorCode = errorCode; } /** *

* An error code returned by the namespace deletion task. *

* * @return An error code returned by the namespace deletion task. * @see NamespaceDeletionStatusErrorCodes */ public String getErrorCode() { return this.errorCode; } /** *

* An error code returned by the namespace deletion task. *

* * @param errorCode * An error code returned by the namespace deletion task. * @return Returns a reference to this object so that method calls can be chained together. * @see NamespaceDeletionStatusErrorCodes */ public GetNamespaceDeletionStatusResult withErrorCode(String errorCode) { setErrorCode(errorCode); return this; } /** *

* An error code returned by the namespace deletion task. *

* * @param errorCode * An error code returned by the namespace deletion task. * @return Returns a reference to this object so that method calls can be chained together. * @see NamespaceDeletionStatusErrorCodes */ public GetNamespaceDeletionStatusResult withErrorCode(NamespaceDeletionStatusErrorCodes errorCode) { this.errorCode = errorCode.toString(); return this; } /** *

* An error code returned by the namespace deletion task. *

* * @param errorMessage * An error code returned by the namespace deletion task. */ public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } /** *

* An error code returned by the namespace deletion task. *

* * @return An error code returned by the namespace deletion task. */ public String getErrorMessage() { return this.errorMessage; } /** *

* An error code returned by the namespace deletion task. *

* * @param errorMessage * An error code returned by the namespace deletion task. * @return Returns a reference to this object so that method calls can be chained together. */ public GetNamespaceDeletionStatusResult withErrorMessage(String errorMessage) { setErrorMessage(errorMessage); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getNamespaceArn() != null) sb.append("NamespaceArn: ").append(getNamespaceArn()).append(","); if (getNamespaceName() != null) sb.append("NamespaceName: ").append(getNamespaceName()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getErrorCode() != null) sb.append("ErrorCode: ").append(getErrorCode()).append(","); if (getErrorMessage() != null) sb.append("ErrorMessage: ").append(getErrorMessage()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetNamespaceDeletionStatusResult == false) return false; GetNamespaceDeletionStatusResult other = (GetNamespaceDeletionStatusResult) obj; if (other.getNamespaceArn() == null ^ this.getNamespaceArn() == null) return false; if (other.getNamespaceArn() != null && other.getNamespaceArn().equals(this.getNamespaceArn()) == false) return false; if (other.getNamespaceName() == null ^ this.getNamespaceName() == null) return false; if (other.getNamespaceName() != null && other.getNamespaceName().equals(this.getNamespaceName()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getErrorCode() == null ^ this.getErrorCode() == null) return false; if (other.getErrorCode() != null && other.getErrorCode().equals(this.getErrorCode()) == false) return false; if (other.getErrorMessage() == null ^ this.getErrorMessage() == null) return false; if (other.getErrorMessage() != null && other.getErrorMessage().equals(this.getErrorMessage()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getNamespaceArn() == null) ? 0 : getNamespaceArn().hashCode()); hashCode = prime * hashCode + ((getNamespaceName() == null) ? 0 : getNamespaceName().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getErrorCode() == null) ? 0 : getErrorCode().hashCode()); hashCode = prime * hashCode + ((getErrorMessage() == null) ? 0 : getErrorMessage().hashCode()); return hashCode; } @Override public GetNamespaceDeletionStatusResult clone() { try { return (GetNamespaceDeletionStatusResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy