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

com.amazonaws.services.ec2.model.DhcpOptions Maven / Gradle / Ivy

/*
 * Copyright 2010-2013 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.ec2.model;
import java.io.Serializable;

/**
 * 

* The DhcpOptions data type. *

*/ public class DhcpOptions implements Serializable { /** * Specifies the ID of the set of DHCP options. */ private String dhcpOptionsId; /** * Contains information about the set of DHCP options. */ private java.util.List dhcpConfigurations; /** * A list of tags for the DhcpOptions. */ private java.util.List tags; /** * Specifies the ID of the set of DHCP options. * * @return Specifies the ID of the set of DHCP options. */ public String getDhcpOptionsId() { return dhcpOptionsId; } /** * Specifies the ID of the set of DHCP options. * * @param dhcpOptionsId Specifies the ID of the set of DHCP options. */ public void setDhcpOptionsId(String dhcpOptionsId) { this.dhcpOptionsId = dhcpOptionsId; } /** * Specifies the ID of the set of DHCP options. *

* Returns a reference to this object so that method calls can be chained together. * * @param dhcpOptionsId Specifies the ID of the set of DHCP options. * * @return A reference to this updated object so that method calls can be chained * together. */ public DhcpOptions withDhcpOptionsId(String dhcpOptionsId) { this.dhcpOptionsId = dhcpOptionsId; return this; } /** * Contains information about the set of DHCP options. * * @return Contains information about the set of DHCP options. */ public java.util.List getDhcpConfigurations() { if (dhcpConfigurations == null) { dhcpConfigurations = new java.util.ArrayList(); } return dhcpConfigurations; } /** * Contains information about the set of DHCP options. * * @param dhcpConfigurations Contains information about the set of DHCP options. */ public void setDhcpConfigurations(java.util.Collection dhcpConfigurations) { if (dhcpConfigurations == null) { this.dhcpConfigurations = null; return; } java.util.List dhcpConfigurationsCopy = new java.util.ArrayList(dhcpConfigurations.size()); dhcpConfigurationsCopy.addAll(dhcpConfigurations); this.dhcpConfigurations = dhcpConfigurationsCopy; } /** * Contains information about the set of DHCP options. *

* Returns a reference to this object so that method calls can be chained together. * * @param dhcpConfigurations Contains information about the set of DHCP options. * * @return A reference to this updated object so that method calls can be chained * together. */ public DhcpOptions withDhcpConfigurations(DhcpConfiguration... dhcpConfigurations) { if (getDhcpConfigurations() == null) setDhcpConfigurations(new java.util.ArrayList(dhcpConfigurations.length)); for (DhcpConfiguration value : dhcpConfigurations) { getDhcpConfigurations().add(value); } return this; } /** * Contains information about the set of DHCP options. *

* Returns a reference to this object so that method calls can be chained together. * * @param dhcpConfigurations Contains information about the set of DHCP options. * * @return A reference to this updated object so that method calls can be chained * together. */ public DhcpOptions withDhcpConfigurations(java.util.Collection dhcpConfigurations) { if (dhcpConfigurations == null) { this.dhcpConfigurations = null; } else { java.util.List dhcpConfigurationsCopy = new java.util.ArrayList(dhcpConfigurations.size()); dhcpConfigurationsCopy.addAll(dhcpConfigurations); this.dhcpConfigurations = dhcpConfigurationsCopy; } return this; } /** * A list of tags for the DhcpOptions. * * @return A list of tags for the DhcpOptions. */ public java.util.List getTags() { if (tags == null) { tags = new java.util.ArrayList(); } return tags; } /** * A list of tags for the DhcpOptions. * * @param tags A list of tags for the DhcpOptions. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } java.util.List tagsCopy = new java.util.ArrayList(tags.size()); tagsCopy.addAll(tags); this.tags = tagsCopy; } /** * A list of tags for the DhcpOptions. *

* Returns a reference to this object so that method calls can be chained together. * * @param tags A list of tags for the DhcpOptions. * * @return A reference to this updated object so that method calls can be chained * together. */ public DhcpOptions withTags(Tag... tags) { if (getTags() == null) setTags(new java.util.ArrayList(tags.length)); for (Tag value : tags) { getTags().add(value); } return this; } /** * A list of tags for the DhcpOptions. *

* Returns a reference to this object so that method calls can be chained together. * * @param tags A list of tags for the DhcpOptions. * * @return A reference to this updated object so that method calls can be chained * together. */ public DhcpOptions withTags(java.util.Collection tags) { if (tags == null) { this.tags = null; } else { java.util.List tagsCopy = new java.util.ArrayList(tags.size()); tagsCopy.addAll(tags); this.tags = tagsCopy; } 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 (getDhcpOptionsId() != null) sb.append("DhcpOptionsId: " + getDhcpOptionsId() + ","); if (getDhcpConfigurations() != null) sb.append("DhcpConfigurations: " + getDhcpConfigurations() + ","); if (getTags() != null) sb.append("Tags: " + getTags() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDhcpOptionsId() == null) ? 0 : getDhcpOptionsId().hashCode()); hashCode = prime * hashCode + ((getDhcpConfigurations() == null) ? 0 : getDhcpConfigurations().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DhcpOptions == false) return false; DhcpOptions other = (DhcpOptions)obj; if (other.getDhcpOptionsId() == null ^ this.getDhcpOptionsId() == null) return false; if (other.getDhcpOptionsId() != null && other.getDhcpOptionsId().equals(this.getDhcpOptionsId()) == false) return false; if (other.getDhcpConfigurations() == null ^ this.getDhcpConfigurations() == null) return false; if (other.getDhcpConfigurations() != null && other.getDhcpConfigurations().equals(this.getDhcpConfigurations()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy