com.amazonaws.services.workmail.model.Domain Maven / Gradle / Ivy
Show all versions of aws-java-sdk-workmail Show documentation
/*
* Copyright 2019-2024 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.workmail.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* The domain to associate with an WorkMail organization.
*
*
* When you configure a domain hosted in Amazon Route 53 (Route 53), all recommended DNS records are added to the
* organization when you create it. For more information, see Adding a domain in the WorkMail
* Administrator Guide.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class Domain implements Serializable, Cloneable, StructuredPojo {
/**
*
* The fully qualified domain name.
*
*/
private String domainName;
/**
*
* The hosted zone ID for a domain hosted in Route 53. Required when configuring a domain hosted in Route 53.
*
*/
private String hostedZoneId;
/**
*
* The fully qualified domain name.
*
*
* @param domainName
* The fully qualified domain name.
*/
public void setDomainName(String domainName) {
this.domainName = domainName;
}
/**
*
* The fully qualified domain name.
*
*
* @return The fully qualified domain name.
*/
public String getDomainName() {
return this.domainName;
}
/**
*
* The fully qualified domain name.
*
*
* @param domainName
* The fully qualified domain name.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Domain withDomainName(String domainName) {
setDomainName(domainName);
return this;
}
/**
*
* The hosted zone ID for a domain hosted in Route 53. Required when configuring a domain hosted in Route 53.
*
*
* @param hostedZoneId
* The hosted zone ID for a domain hosted in Route 53. Required when configuring a domain hosted in Route 53.
*/
public void setHostedZoneId(String hostedZoneId) {
this.hostedZoneId = hostedZoneId;
}
/**
*
* The hosted zone ID for a domain hosted in Route 53. Required when configuring a domain hosted in Route 53.
*
*
* @return The hosted zone ID for a domain hosted in Route 53. Required when configuring a domain hosted in Route
* 53.
*/
public String getHostedZoneId() {
return this.hostedZoneId;
}
/**
*
* The hosted zone ID for a domain hosted in Route 53. Required when configuring a domain hosted in Route 53.
*
*
* @param hostedZoneId
* The hosted zone ID for a domain hosted in Route 53. Required when configuring a domain hosted in Route 53.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Domain withHostedZoneId(String hostedZoneId) {
setHostedZoneId(hostedZoneId);
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 (getDomainName() != null)
sb.append("DomainName: ").append(getDomainName()).append(",");
if (getHostedZoneId() != null)
sb.append("HostedZoneId: ").append(getHostedZoneId());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Domain == false)
return false;
Domain other = (Domain) obj;
if (other.getDomainName() == null ^ this.getDomainName() == null)
return false;
if (other.getDomainName() != null && other.getDomainName().equals(this.getDomainName()) == false)
return false;
if (other.getHostedZoneId() == null ^ this.getHostedZoneId() == null)
return false;
if (other.getHostedZoneId() != null && other.getHostedZoneId().equals(this.getHostedZoneId()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDomainName() == null) ? 0 : getDomainName().hashCode());
hashCode = prime * hashCode + ((getHostedZoneId() == null) ? 0 : getHostedZoneId().hashCode());
return hashCode;
}
@Override
public Domain clone() {
try {
return (Domain) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.workmail.model.transform.DomainMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}