
com.amazonaws.services.route53.model.HostedZone Maven / Gradle / Ivy
Show all versions of aws-java-sdk-route53 Show documentation
/*
* 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 contains general information about the hosted zone.
*
*/
public class HostedZone implements Serializable, Cloneable {
/**
*
* The ID that Amazon Route 53 assigned to the hosted zone when you created it.
*
*/
private String id;
/**
*
* The name of the domain. For public hosted zones, this is the name that you have registered with your DNS
* registrar.
*
*
* For information about how to specify characters other than a-z
, 0-9
, and -
* (hyphen) and how to specify internationalized domain names, see CreateHostedZone.
*
*/
private String name;
/**
*
* The value that you specified for CallerReference
when you created the hosted zone.
*
*/
private String callerReference;
/**
*
* A complex type that includes the Comment
and PrivateZone
elements. If you omitted the
* HostedZoneConfig
and Comment
elements from the request, the Config
and
* Comment
elements don't appear in the response.
*
*/
private HostedZoneConfig config;
/**
*
* The number of resource record sets in the hosted zone.
*
*/
private Long resourceRecordSetCount;
/**
* Default constructor for HostedZone object. Callers should use the setter or fluent setter (with...) methods to
* initialize the object after creating it.
*/
public HostedZone() {
}
/**
* Constructs a new HostedZone object. Callers should use the setter or fluent setter (with...) methods to
* initialize any additional object members.
*
* @param id
* The ID that Amazon Route 53 assigned to the hosted zone when you created it.
* @param name
* The name of the domain. For public hosted zones, this is the name that you have registered with your DNS
* registrar.
*
* For information about how to specify characters other than a-z
, 0-9
, and
* -
(hyphen) and how to specify internationalized domain names, see CreateHostedZone.
* @param callerReference
* The value that you specified for CallerReference
when you created the hosted zone.
*/
public HostedZone(String id, String name, String callerReference) {
setId(id);
setName(name);
setCallerReference(callerReference);
}
/**
*
* The ID that Amazon Route 53 assigned to the hosted zone when you created it.
*
*
* @param id
* The ID that Amazon Route 53 assigned to the hosted zone when you created it.
*/
public void setId(String id) {
this.id = id;
}
/**
*
* The ID that Amazon Route 53 assigned to the hosted zone when you created it.
*
*
* @return The ID that Amazon Route 53 assigned to the hosted zone when you created it.
*/
public String getId() {
return this.id;
}
/**
*
* The ID that Amazon Route 53 assigned to the hosted zone when you created it.
*
*
* @param id
* The ID that Amazon Route 53 assigned to the hosted zone when you created it.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public HostedZone withId(String id) {
setId(id);
return this;
}
/**
*
* The name of the domain. For public hosted zones, this is the name that you have registered with your DNS
* registrar.
*
*
* For information about how to specify characters other than a-z
, 0-9
, and -
* (hyphen) and how to specify internationalized domain names, see CreateHostedZone.
*
*
* @param name
* The name of the domain. For public hosted zones, this is the name that you have registered with your DNS
* registrar.
*
* For information about how to specify characters other than a-z
, 0-9
, and
* -
(hyphen) and how to specify internationalized domain names, see CreateHostedZone.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the domain. For public hosted zones, this is the name that you have registered with your DNS
* registrar.
*
*
* For information about how to specify characters other than a-z
, 0-9
, and -
* (hyphen) and how to specify internationalized domain names, see CreateHostedZone.
*
*
* @return The name of the domain. For public hosted zones, this is the name that you have registered with your DNS
* registrar.
*
* For information about how to specify characters other than a-z
, 0-9
, and
* -
(hyphen) and how to specify internationalized domain names, see CreateHostedZone.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the domain. For public hosted zones, this is the name that you have registered with your DNS
* registrar.
*
*
* For information about how to specify characters other than a-z
, 0-9
, and -
* (hyphen) and how to specify internationalized domain names, see CreateHostedZone.
*
*
* @param name
* The name of the domain. For public hosted zones, this is the name that you have registered with your DNS
* registrar.
*
* For information about how to specify characters other than a-z
, 0-9
, and
* -
(hyphen) and how to specify internationalized domain names, see CreateHostedZone.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public HostedZone withName(String name) {
setName(name);
return this;
}
/**
*
* The value that you specified for CallerReference
when you created the hosted zone.
*
*
* @param callerReference
* The value that you specified for CallerReference
when you created the hosted zone.
*/
public void setCallerReference(String callerReference) {
this.callerReference = callerReference;
}
/**
*
* The value that you specified for CallerReference
when you created the hosted zone.
*
*
* @return The value that you specified for CallerReference
when you created the hosted zone.
*/
public String getCallerReference() {
return this.callerReference;
}
/**
*
* The value that you specified for CallerReference
when you created the hosted zone.
*
*
* @param callerReference
* The value that you specified for CallerReference
when you created the hosted zone.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public HostedZone withCallerReference(String callerReference) {
setCallerReference(callerReference);
return this;
}
/**
*
* A complex type that includes the Comment
and PrivateZone
elements. If you omitted the
* HostedZoneConfig
and Comment
elements from the request, the Config
and
* Comment
elements don't appear in the response.
*
*
* @param config
* A complex type that includes the Comment
and PrivateZone
elements. If you
* omitted the HostedZoneConfig
and Comment
elements from the request, the
* Config
and Comment
elements don't appear in the response.
*/
public void setConfig(HostedZoneConfig config) {
this.config = config;
}
/**
*
* A complex type that includes the Comment
and PrivateZone
elements. If you omitted the
* HostedZoneConfig
and Comment
elements from the request, the Config
and
* Comment
elements don't appear in the response.
*
*
* @return A complex type that includes the Comment
and PrivateZone
elements. If you
* omitted the HostedZoneConfig
and Comment
elements from the request, the
* Config
and Comment
elements don't appear in the response.
*/
public HostedZoneConfig getConfig() {
return this.config;
}
/**
*
* A complex type that includes the Comment
and PrivateZone
elements. If you omitted the
* HostedZoneConfig
and Comment
elements from the request, the Config
and
* Comment
elements don't appear in the response.
*
*
* @param config
* A complex type that includes the Comment
and PrivateZone
elements. If you
* omitted the HostedZoneConfig
and Comment
elements from the request, the
* Config
and Comment
elements don't appear in the response.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public HostedZone withConfig(HostedZoneConfig config) {
setConfig(config);
return this;
}
/**
*
* The number of resource record sets in the hosted zone.
*
*
* @param resourceRecordSetCount
* The number of resource record sets in the hosted zone.
*/
public void setResourceRecordSetCount(Long resourceRecordSetCount) {
this.resourceRecordSetCount = resourceRecordSetCount;
}
/**
*
* The number of resource record sets in the hosted zone.
*
*
* @return The number of resource record sets in the hosted zone.
*/
public Long getResourceRecordSetCount() {
return this.resourceRecordSetCount;
}
/**
*
* The number of resource record sets in the hosted zone.
*
*
* @param resourceRecordSetCount
* The number of resource record sets in the hosted zone.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public HostedZone withResourceRecordSetCount(Long resourceRecordSetCount) {
setResourceRecordSetCount(resourceRecordSetCount);
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 (getName() != null)
sb.append("Name: " + getName() + ",");
if (getCallerReference() != null)
sb.append("CallerReference: " + getCallerReference() + ",");
if (getConfig() != null)
sb.append("Config: " + getConfig() + ",");
if (getResourceRecordSetCount() != null)
sb.append("ResourceRecordSetCount: " + getResourceRecordSetCount());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof HostedZone == false)
return false;
HostedZone other = (HostedZone) obj;
if (other.getId() == null ^ this.getId() == null)
return false;
if (other.getId() != null && other.getId().equals(this.getId()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getCallerReference() == null ^ this.getCallerReference() == null)
return false;
if (other.getCallerReference() != null && other.getCallerReference().equals(this.getCallerReference()) == false)
return false;
if (other.getConfig() == null ^ this.getConfig() == null)
return false;
if (other.getConfig() != null && other.getConfig().equals(this.getConfig()) == false)
return false;
if (other.getResourceRecordSetCount() == null ^ this.getResourceRecordSetCount() == null)
return false;
if (other.getResourceRecordSetCount() != null && other.getResourceRecordSetCount().equals(this.getResourceRecordSetCount()) == 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 + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getCallerReference() == null) ? 0 : getCallerReference().hashCode());
hashCode = prime * hashCode + ((getConfig() == null) ? 0 : getConfig().hashCode());
hashCode = prime * hashCode + ((getResourceRecordSetCount() == null) ? 0 : getResourceRecordSetCount().hashCode());
return hashCode;
}
@Override
public HostedZone clone() {
try {
return (HostedZone) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}