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

com.amazonaws.services.outposts.model.GetSiteAddressResult Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.778
Show newest version
/*
 * 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.outposts.model;

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

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

    private String siteId;
    /**
     * 

* The type of the address you receive. *

*/ private String addressType; /** *

* Information about the address. *

*/ private Address address; /** * @param siteId */ public void setSiteId(String siteId) { this.siteId = siteId; } /** * @return */ public String getSiteId() { return this.siteId; } /** * @param siteId * @return Returns a reference to this object so that method calls can be chained together. */ public GetSiteAddressResult withSiteId(String siteId) { setSiteId(siteId); return this; } /** *

* The type of the address you receive. *

* * @param addressType * The type of the address you receive. * @see AddressType */ public void setAddressType(String addressType) { this.addressType = addressType; } /** *

* The type of the address you receive. *

* * @return The type of the address you receive. * @see AddressType */ public String getAddressType() { return this.addressType; } /** *

* The type of the address you receive. *

* * @param addressType * The type of the address you receive. * @return Returns a reference to this object so that method calls can be chained together. * @see AddressType */ public GetSiteAddressResult withAddressType(String addressType) { setAddressType(addressType); return this; } /** *

* The type of the address you receive. *

* * @param addressType * The type of the address you receive. * @return Returns a reference to this object so that method calls can be chained together. * @see AddressType */ public GetSiteAddressResult withAddressType(AddressType addressType) { this.addressType = addressType.toString(); return this; } /** *

* Information about the address. *

* * @param address * Information about the address. */ public void setAddress(Address address) { this.address = address; } /** *

* Information about the address. *

* * @return Information about the address. */ public Address getAddress() { return this.address; } /** *

* Information about the address. *

* * @param address * Information about the address. * @return Returns a reference to this object so that method calls can be chained together. */ public GetSiteAddressResult withAddress(Address address) { setAddress(address); 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 (getSiteId() != null) sb.append("SiteId: ").append(getSiteId()).append(","); if (getAddressType() != null) sb.append("AddressType: ").append(getAddressType()).append(","); if (getAddress() != null) sb.append("Address: ").append(getAddress()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetSiteAddressResult == false) return false; GetSiteAddressResult other = (GetSiteAddressResult) obj; if (other.getSiteId() == null ^ this.getSiteId() == null) return false; if (other.getSiteId() != null && other.getSiteId().equals(this.getSiteId()) == false) return false; if (other.getAddressType() == null ^ this.getAddressType() == null) return false; if (other.getAddressType() != null && other.getAddressType().equals(this.getAddressType()) == false) return false; if (other.getAddress() == null ^ this.getAddress() == null) return false; if (other.getAddress() != null && other.getAddress().equals(this.getAddress()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getSiteId() == null) ? 0 : getSiteId().hashCode()); hashCode = prime * hashCode + ((getAddressType() == null) ? 0 : getAddressType().hashCode()); hashCode = prime * hashCode + ((getAddress() == null) ? 0 : getAddress().hashCode()); return hashCode; } @Override public GetSiteAddressResult clone() { try { return (GetSiteAddressResult) 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