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

com.amazonaws.services.route53.model.ChangeInfo Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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.route53.model;

import java.io.Serializable;

/**
 * 

* A complex type that describes change information about changes made to your * hosted zone. *

*

* This element contains an ID that you use when performing a * GetChange action to get detailed information about the change. *

*/ public class ChangeInfo implements Serializable, Cloneable { /** *

* The ID of the request. Use this ID to track when the change has completed * across all Amazon Route 53 DNS servers. *

*/ private String id; /** *

* The current state of the request. PENDING indicates that * this request has not yet been applied to all Amazon Route 53 DNS servers. *

*

* Valid Values: PENDING | INSYNC *

*/ private String status; /** *

* The date and time the change was submitted, in the format * YYYY-MM-DDThh:mm:ssZ, as specified in the ISO 8601 standard * (for example, 2009-11-19T19:37:58Z). The Z after the time * indicates that the time is listed in Coordinated Universal Time (UTC). *

*/ private java.util.Date submittedAt; /** *

* A complex type that describes change information about changes made to * your hosted zone. *

*

* This element contains an ID that you use when performing a * GetChange action to get detailed information about the * change. *

*/ private String comment; /** * Default constructor for ChangeInfo object. Callers should use the setter * or fluent setter (with...) methods to initialize the object after * creating it. */ public ChangeInfo() { } /** * Constructs a new ChangeInfo object. Callers should use the setter or * fluent setter (with...) methods to initialize any additional object * members. * * @param id * The ID of the request. Use this ID to track when the change has * completed across all Amazon Route 53 DNS servers. * @param status * The current state of the request. PENDING indicates * that this request has not yet been applied to all Amazon Route 53 * DNS servers.

*

* Valid Values: PENDING | INSYNC * @param submittedAt * The date and time the change was submitted, in the format * YYYY-MM-DDThh:mm:ssZ, as specified in the ISO 8601 * standard (for example, 2009-11-19T19:37:58Z). The Z * after the time indicates that the time is listed in Coordinated * Universal Time (UTC). */ public ChangeInfo(String id, String status, java.util.Date submittedAt) { setId(id); setStatus(status); setSubmittedAt(submittedAt); } /** * Constructs a new ChangeInfo object. Callers should use the setter or * fluent setter (with...) methods to initialize any additional object * members. * * @param id * The ID of the request. Use this ID to track when the change has * completed across all Amazon Route 53 DNS servers. * @param status * The current state of the request. PENDING indicates * that this request has not yet been applied to all Amazon Route 53 * DNS servers.

*

* Valid Values: PENDING | INSYNC * @param submittedAt * The date and time the change was submitted, in the format * YYYY-MM-DDThh:mm:ssZ, as specified in the ISO 8601 * standard (for example, 2009-11-19T19:37:58Z). The Z * after the time indicates that the time is listed in Coordinated * Universal Time (UTC). */ public ChangeInfo(String id, ChangeStatus status, java.util.Date submittedAt) { setId(id); setStatus(status.toString()); setSubmittedAt(submittedAt); } /** *

* The ID of the request. Use this ID to track when the change has completed * across all Amazon Route 53 DNS servers. *

* * @param id * The ID of the request. Use this ID to track when the change has * completed across all Amazon Route 53 DNS servers. */ public void setId(String id) { this.id = id; } /** *

* The ID of the request. Use this ID to track when the change has completed * across all Amazon Route 53 DNS servers. *

* * @return The ID of the request. Use this ID to track when the change has * completed across all Amazon Route 53 DNS servers. */ public String getId() { return this.id; } /** *

* The ID of the request. Use this ID to track when the change has completed * across all Amazon Route 53 DNS servers. *

* * @param id * The ID of the request. Use this ID to track when the change has * completed across all Amazon Route 53 DNS servers. * @return Returns a reference to this object so that method calls can be * chained together. */ public ChangeInfo withId(String id) { setId(id); return this; } /** *

* The current state of the request. PENDING indicates that * this request has not yet been applied to all Amazon Route 53 DNS servers. *

*

* Valid Values: PENDING | INSYNC *

* * @param status * The current state of the request. PENDING indicates * that this request has not yet been applied to all Amazon Route 53 * DNS servers.

*

* Valid Values: PENDING | INSYNC * @see ChangeStatus */ public void setStatus(String status) { this.status = status; } /** *

* The current state of the request. PENDING indicates that * this request has not yet been applied to all Amazon Route 53 DNS servers. *

*

* Valid Values: PENDING | INSYNC *

* * @return The current state of the request. PENDING indicates * that this request has not yet been applied to all Amazon Route 53 * DNS servers.

*

* Valid Values: PENDING | INSYNC * @see ChangeStatus */ public String getStatus() { return this.status; } /** *

* The current state of the request. PENDING indicates that * this request has not yet been applied to all Amazon Route 53 DNS servers. *

*

* Valid Values: PENDING | INSYNC *

* * @param status * The current state of the request. PENDING indicates * that this request has not yet been applied to all Amazon Route 53 * DNS servers.

*

* Valid Values: PENDING | INSYNC * @return Returns a reference to this object so that method calls can be * chained together. * @see ChangeStatus */ public ChangeInfo withStatus(String status) { setStatus(status); return this; } /** *

* The current state of the request. PENDING indicates that * this request has not yet been applied to all Amazon Route 53 DNS servers. *

*

* Valid Values: PENDING | INSYNC *

* * @param status * The current state of the request. PENDING indicates * that this request has not yet been applied to all Amazon Route 53 * DNS servers.

*

* Valid Values: PENDING | INSYNC * @see ChangeStatus */ public void setStatus(ChangeStatus status) { this.status = status.toString(); } /** *

* The current state of the request. PENDING indicates that * this request has not yet been applied to all Amazon Route 53 DNS servers. *

*

* Valid Values: PENDING | INSYNC *

* * @param status * The current state of the request. PENDING indicates * that this request has not yet been applied to all Amazon Route 53 * DNS servers.

*

* Valid Values: PENDING | INSYNC * @return Returns a reference to this object so that method calls can be * chained together. * @see ChangeStatus */ public ChangeInfo withStatus(ChangeStatus status) { setStatus(status); return this; } /** *

* The date and time the change was submitted, in the format * YYYY-MM-DDThh:mm:ssZ, as specified in the ISO 8601 standard * (for example, 2009-11-19T19:37:58Z). The Z after the time * indicates that the time is listed in Coordinated Universal Time (UTC). *

* * @param submittedAt * The date and time the change was submitted, in the format * YYYY-MM-DDThh:mm:ssZ, as specified in the ISO 8601 * standard (for example, 2009-11-19T19:37:58Z). The Z * after the time indicates that the time is listed in Coordinated * Universal Time (UTC). */ public void setSubmittedAt(java.util.Date submittedAt) { this.submittedAt = submittedAt; } /** *

* The date and time the change was submitted, in the format * YYYY-MM-DDThh:mm:ssZ, as specified in the ISO 8601 standard * (for example, 2009-11-19T19:37:58Z). The Z after the time * indicates that the time is listed in Coordinated Universal Time (UTC). *

* * @return The date and time the change was submitted, in the format * YYYY-MM-DDThh:mm:ssZ, as specified in the ISO 8601 * standard (for example, 2009-11-19T19:37:58Z). The Z * after the time indicates that the time is listed in Coordinated * Universal Time (UTC). */ public java.util.Date getSubmittedAt() { return this.submittedAt; } /** *

* The date and time the change was submitted, in the format * YYYY-MM-DDThh:mm:ssZ, as specified in the ISO 8601 standard * (for example, 2009-11-19T19:37:58Z). The Z after the time * indicates that the time is listed in Coordinated Universal Time (UTC). *

* * @param submittedAt * The date and time the change was submitted, in the format * YYYY-MM-DDThh:mm:ssZ, as specified in the ISO 8601 * standard (for example, 2009-11-19T19:37:58Z). The Z * after the time indicates that the time is listed in Coordinated * Universal Time (UTC). * @return Returns a reference to this object so that method calls can be * chained together. */ public ChangeInfo withSubmittedAt(java.util.Date submittedAt) { setSubmittedAt(submittedAt); return this; } /** *

* A complex type that describes change information about changes made to * your hosted zone. *

*

* This element contains an ID that you use when performing a * GetChange action to get detailed information about the * change. *

* * @param comment * A complex type that describes change information about changes * made to your hosted zone.

*

* This element contains an ID that you use when performing a * GetChange action to get detailed information about * the change. */ public void setComment(String comment) { this.comment = comment; } /** *

* A complex type that describes change information about changes made to * your hosted zone. *

*

* This element contains an ID that you use when performing a * GetChange action to get detailed information about the * change. *

* * @return A complex type that describes change information about changes * made to your hosted zone.

*

* This element contains an ID that you use when performing a * GetChange action to get detailed information about * the change. */ public String getComment() { return this.comment; } /** *

* A complex type that describes change information about changes made to * your hosted zone. *

*

* This element contains an ID that you use when performing a * GetChange action to get detailed information about the * change. *

* * @param comment * A complex type that describes change information about changes * made to your hosted zone.

*

* This element contains an ID that you use when performing a * GetChange action to get detailed information about * the change. * @return Returns a reference to this object so that method calls can be * chained together. */ public ChangeInfo withComment(String comment) { setComment(comment); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getId() != null) sb.append("Id: " + getId() + ","); if (getStatus() != null) sb.append("Status: " + getStatus() + ","); if (getSubmittedAt() != null) sb.append("SubmittedAt: " + getSubmittedAt() + ","); if (getComment() != null) sb.append("Comment: " + getComment()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ChangeInfo == false) return false; ChangeInfo other = (ChangeInfo) obj; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == 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.getSubmittedAt() == null ^ this.getSubmittedAt() == null) return false; if (other.getSubmittedAt() != null && other.getSubmittedAt().equals(this.getSubmittedAt()) == false) return false; if (other.getComment() == null ^ this.getComment() == null) return false; if (other.getComment() != null && other.getComment().equals(this.getComment()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getSubmittedAt() == null) ? 0 : getSubmittedAt().hashCode()); hashCode = prime * hashCode + ((getComment() == null) ? 0 : getComment().hashCode()); return hashCode; } @Override public ChangeInfo clone() { try { return (ChangeInfo) 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