
com.amazonaws.services.rds.model.DBSecurityGroup Maven / Gradle / Ivy
Show all versions of aws-java-sdk-osgi 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.rds.model;
import java.io.Serializable;
/**
*
* Contains the result of a successful invocation of the following actions:
*
*
* -
*
*
* -
*
*
* -
*
*
* -
*
*
*
*
* This data type is used as a response element in the
* DescribeDBSecurityGroups action.
*
*/
public class DBSecurityGroup implements Serializable, Cloneable {
/**
*
* Provides the AWS ID of the owner of a specific DB security group.
*
*/
private String ownerId;
/**
*
* Specifies the name of the DB security group.
*
*/
private String dBSecurityGroupName;
/**
*
* Provides the description of the DB security group.
*
*/
private String dBSecurityGroupDescription;
/**
*
* Provides the VpcId of the DB security group.
*
*/
private String vpcId;
/**
*
* Contains a list of EC2SecurityGroup elements.
*
*/
private com.amazonaws.internal.SdkInternalList eC2SecurityGroups;
/**
*
* Contains a list of IPRange elements.
*
*/
private com.amazonaws.internal.SdkInternalList iPRanges;
/**
*
* Provides the AWS ID of the owner of a specific DB security group.
*
*
* @param ownerId
* Provides the AWS ID of the owner of a specific DB security group.
*/
public void setOwnerId(String ownerId) {
this.ownerId = ownerId;
}
/**
*
* Provides the AWS ID of the owner of a specific DB security group.
*
*
* @return Provides the AWS ID of the owner of a specific DB security group.
*/
public String getOwnerId() {
return this.ownerId;
}
/**
*
* Provides the AWS ID of the owner of a specific DB security group.
*
*
* @param ownerId
* Provides the AWS ID of the owner of a specific DB security group.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSecurityGroup withOwnerId(String ownerId) {
setOwnerId(ownerId);
return this;
}
/**
*
* Specifies the name of the DB security group.
*
*
* @param dBSecurityGroupName
* Specifies the name of the DB security group.
*/
public void setDBSecurityGroupName(String dBSecurityGroupName) {
this.dBSecurityGroupName = dBSecurityGroupName;
}
/**
*
* Specifies the name of the DB security group.
*
*
* @return Specifies the name of the DB security group.
*/
public String getDBSecurityGroupName() {
return this.dBSecurityGroupName;
}
/**
*
* Specifies the name of the DB security group.
*
*
* @param dBSecurityGroupName
* Specifies the name of the DB security group.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSecurityGroup withDBSecurityGroupName(String dBSecurityGroupName) {
setDBSecurityGroupName(dBSecurityGroupName);
return this;
}
/**
*
* Provides the description of the DB security group.
*
*
* @param dBSecurityGroupDescription
* Provides the description of the DB security group.
*/
public void setDBSecurityGroupDescription(String dBSecurityGroupDescription) {
this.dBSecurityGroupDescription = dBSecurityGroupDescription;
}
/**
*
* Provides the description of the DB security group.
*
*
* @return Provides the description of the DB security group.
*/
public String getDBSecurityGroupDescription() {
return this.dBSecurityGroupDescription;
}
/**
*
* Provides the description of the DB security group.
*
*
* @param dBSecurityGroupDescription
* Provides the description of the DB security group.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSecurityGroup withDBSecurityGroupDescription(
String dBSecurityGroupDescription) {
setDBSecurityGroupDescription(dBSecurityGroupDescription);
return this;
}
/**
*
* Provides the VpcId of the DB security group.
*
*
* @param vpcId
* Provides the VpcId of the DB security group.
*/
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
}
/**
*
* Provides the VpcId of the DB security group.
*
*
* @return Provides the VpcId of the DB security group.
*/
public String getVpcId() {
return this.vpcId;
}
/**
*
* Provides the VpcId of the DB security group.
*
*
* @param vpcId
* Provides the VpcId of the DB security group.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSecurityGroup withVpcId(String vpcId) {
setVpcId(vpcId);
return this;
}
/**
*
* Contains a list of EC2SecurityGroup elements.
*
*
* @return Contains a list of EC2SecurityGroup elements.
*/
public java.util.List getEC2SecurityGroups() {
if (eC2SecurityGroups == null) {
eC2SecurityGroups = new com.amazonaws.internal.SdkInternalList();
}
return eC2SecurityGroups;
}
/**
*
* Contains a list of EC2SecurityGroup elements.
*
*
* @param eC2SecurityGroups
* Contains a list of EC2SecurityGroup elements.
*/
public void setEC2SecurityGroups(
java.util.Collection eC2SecurityGroups) {
if (eC2SecurityGroups == null) {
this.eC2SecurityGroups = null;
return;
}
this.eC2SecurityGroups = new com.amazonaws.internal.SdkInternalList(
eC2SecurityGroups);
}
/**
*
* Contains a list of EC2SecurityGroup elements.
*
*
* NOTE: This method appends the values to the existing list (if
* any). Use {@link #setEC2SecurityGroups(java.util.Collection)} or
* {@link #withEC2SecurityGroups(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param eC2SecurityGroups
* Contains a list of EC2SecurityGroup elements.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSecurityGroup withEC2SecurityGroups(
EC2SecurityGroup... eC2SecurityGroups) {
if (this.eC2SecurityGroups == null) {
setEC2SecurityGroups(new com.amazonaws.internal.SdkInternalList(
eC2SecurityGroups.length));
}
for (EC2SecurityGroup ele : eC2SecurityGroups) {
this.eC2SecurityGroups.add(ele);
}
return this;
}
/**
*
* Contains a list of EC2SecurityGroup elements.
*
*
* @param eC2SecurityGroups
* Contains a list of EC2SecurityGroup elements.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSecurityGroup withEC2SecurityGroups(
java.util.Collection eC2SecurityGroups) {
setEC2SecurityGroups(eC2SecurityGroups);
return this;
}
/**
*
* Contains a list of IPRange elements.
*
*
* @return Contains a list of IPRange elements.
*/
public java.util.List getIPRanges() {
if (iPRanges == null) {
iPRanges = new com.amazonaws.internal.SdkInternalList();
}
return iPRanges;
}
/**
*
* Contains a list of IPRange elements.
*
*
* @param iPRanges
* Contains a list of IPRange elements.
*/
public void setIPRanges(java.util.Collection iPRanges) {
if (iPRanges == null) {
this.iPRanges = null;
return;
}
this.iPRanges = new com.amazonaws.internal.SdkInternalList(
iPRanges);
}
/**
*
* Contains a list of IPRange elements.
*
*
* NOTE: This method appends the values to the existing list (if
* any). Use {@link #setIPRanges(java.util.Collection)} or
* {@link #withIPRanges(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param iPRanges
* Contains a list of IPRange elements.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSecurityGroup withIPRanges(IPRange... iPRanges) {
if (this.iPRanges == null) {
setIPRanges(new com.amazonaws.internal.SdkInternalList(
iPRanges.length));
}
for (IPRange ele : iPRanges) {
this.iPRanges.add(ele);
}
return this;
}
/**
*
* Contains a list of IPRange elements.
*
*
* @param iPRanges
* Contains a list of IPRange elements.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DBSecurityGroup withIPRanges(java.util.Collection iPRanges) {
setIPRanges(iPRanges);
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 (getOwnerId() != null)
sb.append("OwnerId: " + getOwnerId() + ",");
if (getDBSecurityGroupName() != null)
sb.append("DBSecurityGroupName: " + getDBSecurityGroupName() + ",");
if (getDBSecurityGroupDescription() != null)
sb.append("DBSecurityGroupDescription: "
+ getDBSecurityGroupDescription() + ",");
if (getVpcId() != null)
sb.append("VpcId: " + getVpcId() + ",");
if (getEC2SecurityGroups() != null)
sb.append("EC2SecurityGroups: " + getEC2SecurityGroups() + ",");
if (getIPRanges() != null)
sb.append("IPRanges: " + getIPRanges());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DBSecurityGroup == false)
return false;
DBSecurityGroup other = (DBSecurityGroup) obj;
if (other.getOwnerId() == null ^ this.getOwnerId() == null)
return false;
if (other.getOwnerId() != null
&& other.getOwnerId().equals(this.getOwnerId()) == false)
return false;
if (other.getDBSecurityGroupName() == null
^ this.getDBSecurityGroupName() == null)
return false;
if (other.getDBSecurityGroupName() != null
&& other.getDBSecurityGroupName().equals(
this.getDBSecurityGroupName()) == false)
return false;
if (other.getDBSecurityGroupDescription() == null
^ this.getDBSecurityGroupDescription() == null)
return false;
if (other.getDBSecurityGroupDescription() != null
&& other.getDBSecurityGroupDescription().equals(
this.getDBSecurityGroupDescription()) == false)
return false;
if (other.getVpcId() == null ^ this.getVpcId() == null)
return false;
if (other.getVpcId() != null
&& other.getVpcId().equals(this.getVpcId()) == false)
return false;
if (other.getEC2SecurityGroups() == null
^ this.getEC2SecurityGroups() == null)
return false;
if (other.getEC2SecurityGroups() != null
&& other.getEC2SecurityGroups().equals(
this.getEC2SecurityGroups()) == false)
return false;
if (other.getIPRanges() == null ^ this.getIPRanges() == null)
return false;
if (other.getIPRanges() != null
&& other.getIPRanges().equals(this.getIPRanges()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode
+ ((getOwnerId() == null) ? 0 : getOwnerId().hashCode());
hashCode = prime
* hashCode
+ ((getDBSecurityGroupName() == null) ? 0
: getDBSecurityGroupName().hashCode());
hashCode = prime
* hashCode
+ ((getDBSecurityGroupDescription() == null) ? 0
: getDBSecurityGroupDescription().hashCode());
hashCode = prime * hashCode
+ ((getVpcId() == null) ? 0 : getVpcId().hashCode());
hashCode = prime
* hashCode
+ ((getEC2SecurityGroups() == null) ? 0
: getEC2SecurityGroups().hashCode());
hashCode = prime * hashCode
+ ((getIPRanges() == null) ? 0 : getIPRanges().hashCode());
return hashCode;
}
@Override
public DBSecurityGroup clone() {
try {
return (DBSecurityGroup) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!", e);
}
}
}