com.amazonaws.services.ec2.model.SecurityGroup Maven / Gradle / Ivy
Show all versions of aws-sdk-android Show documentation
/*
* Copyright 2010-2015 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;
/**
*
* Describes a security group
*
*/
public class SecurityGroup implements Serializable {
/**
* The AWS account ID of the owner of the security group.
*/
private String ownerId;
/**
* The name of the security group.
*/
private String groupName;
/**
* The ID of the security group.
*/
private String groupId;
/**
* A description of the security group.
*/
private String description;
/**
* One or more inbound rules associated with the security group.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag ipPermissions;
/**
* [EC2-VPC] One or more outbound rules associated with the security
* group.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag ipPermissionsEgress;
/**
* [EC2-VPC] The ID of the VPC for the security group.
*/
private String vpcId;
/**
* Any tags assigned to the security group.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag tags;
/**
* The AWS account ID of the owner of the security group.
*
* @return The AWS account ID of the owner of the security group.
*/
public String getOwnerId() {
return ownerId;
}
/**
* The AWS account ID of the owner of the security group.
*
* @param ownerId The AWS account ID of the owner of the security group.
*/
public void setOwnerId(String ownerId) {
this.ownerId = ownerId;
}
/**
* The AWS account ID of the owner of the security group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param ownerId The AWS account ID of the owner of the security group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public SecurityGroup withOwnerId(String ownerId) {
this.ownerId = ownerId;
return this;
}
/**
* The name of the security group.
*
* @return The name of the security group.
*/
public String getGroupName() {
return groupName;
}
/**
* The name of the security group.
*
* @param groupName The name of the security group.
*/
public void setGroupName(String groupName) {
this.groupName = groupName;
}
/**
* The name of the security group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param groupName The name of the security group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public SecurityGroup withGroupName(String groupName) {
this.groupName = groupName;
return this;
}
/**
* The ID of the security group.
*
* @return The ID of the security group.
*/
public String getGroupId() {
return groupId;
}
/**
* The ID of the security group.
*
* @param groupId The ID of the security group.
*/
public void setGroupId(String groupId) {
this.groupId = groupId;
}
/**
* The ID of the security group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param groupId The ID of the security group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public SecurityGroup withGroupId(String groupId) {
this.groupId = groupId;
return this;
}
/**
* A description of the security group.
*
* @return A description of the security group.
*/
public String getDescription() {
return description;
}
/**
* A description of the security group.
*
* @param description A description of the security group.
*/
public void setDescription(String description) {
this.description = description;
}
/**
* A description of the security group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param description A description of the security group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public SecurityGroup withDescription(String description) {
this.description = description;
return this;
}
/**
* One or more inbound rules associated with the security group.
*
* @return One or more inbound rules associated with the security group.
*/
public java.util.List getIpPermissions() {
if (ipPermissions == null) {
ipPermissions = new com.amazonaws.internal.ListWithAutoConstructFlag();
ipPermissions.setAutoConstruct(true);
}
return ipPermissions;
}
/**
* One or more inbound rules associated with the security group.
*
* @param ipPermissions One or more inbound rules associated with the security group.
*/
public void setIpPermissions(java.util.Collection ipPermissions) {
if (ipPermissions == null) {
this.ipPermissions = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag ipPermissionsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(ipPermissions.size());
ipPermissionsCopy.addAll(ipPermissions);
this.ipPermissions = ipPermissionsCopy;
}
/**
* One or more inbound rules associated with the security group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param ipPermissions One or more inbound rules associated with the security group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public SecurityGroup withIpPermissions(IpPermission... ipPermissions) {
if (getIpPermissions() == null) setIpPermissions(new java.util.ArrayList(ipPermissions.length));
for (IpPermission value : ipPermissions) {
getIpPermissions().add(value);
}
return this;
}
/**
* One or more inbound rules associated with the security group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param ipPermissions One or more inbound rules associated with the security group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public SecurityGroup withIpPermissions(java.util.Collection ipPermissions) {
if (ipPermissions == null) {
this.ipPermissions = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag ipPermissionsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(ipPermissions.size());
ipPermissionsCopy.addAll(ipPermissions);
this.ipPermissions = ipPermissionsCopy;
}
return this;
}
/**
* [EC2-VPC] One or more outbound rules associated with the security
* group.
*
* @return [EC2-VPC] One or more outbound rules associated with the security
* group.
*/
public java.util.List getIpPermissionsEgress() {
if (ipPermissionsEgress == null) {
ipPermissionsEgress = new com.amazonaws.internal.ListWithAutoConstructFlag();
ipPermissionsEgress.setAutoConstruct(true);
}
return ipPermissionsEgress;
}
/**
* [EC2-VPC] One or more outbound rules associated with the security
* group.
*
* @param ipPermissionsEgress [EC2-VPC] One or more outbound rules associated with the security
* group.
*/
public void setIpPermissionsEgress(java.util.Collection ipPermissionsEgress) {
if (ipPermissionsEgress == null) {
this.ipPermissionsEgress = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag ipPermissionsEgressCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(ipPermissionsEgress.size());
ipPermissionsEgressCopy.addAll(ipPermissionsEgress);
this.ipPermissionsEgress = ipPermissionsEgressCopy;
}
/**
* [EC2-VPC] One or more outbound rules associated with the security
* group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param ipPermissionsEgress [EC2-VPC] One or more outbound rules associated with the security
* group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public SecurityGroup withIpPermissionsEgress(IpPermission... ipPermissionsEgress) {
if (getIpPermissionsEgress() == null) setIpPermissionsEgress(new java.util.ArrayList(ipPermissionsEgress.length));
for (IpPermission value : ipPermissionsEgress) {
getIpPermissionsEgress().add(value);
}
return this;
}
/**
* [EC2-VPC] One or more outbound rules associated with the security
* group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param ipPermissionsEgress [EC2-VPC] One or more outbound rules associated with the security
* group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public SecurityGroup withIpPermissionsEgress(java.util.Collection ipPermissionsEgress) {
if (ipPermissionsEgress == null) {
this.ipPermissionsEgress = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag ipPermissionsEgressCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(ipPermissionsEgress.size());
ipPermissionsEgressCopy.addAll(ipPermissionsEgress);
this.ipPermissionsEgress = ipPermissionsEgressCopy;
}
return this;
}
/**
* [EC2-VPC] The ID of the VPC for the security group.
*
* @return [EC2-VPC] The ID of the VPC for the security group.
*/
public String getVpcId() {
return vpcId;
}
/**
* [EC2-VPC] The ID of the VPC for the security group.
*
* @param vpcId [EC2-VPC] The ID of the VPC for the security group.
*/
public void setVpcId(String vpcId) {
this.vpcId = vpcId;
}
/**
* [EC2-VPC] The ID of the VPC for the security group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param vpcId [EC2-VPC] The ID of the VPC for the security group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public SecurityGroup withVpcId(String vpcId) {
this.vpcId = vpcId;
return this;
}
/**
* Any tags assigned to the security group.
*
* @return Any tags assigned to the security group.
*/
public java.util.List getTags() {
if (tags == null) {
tags = new com.amazonaws.internal.ListWithAutoConstructFlag();
tags.setAutoConstruct(true);
}
return tags;
}
/**
* Any tags assigned to the security group.
*
* @param tags Any tags assigned to the security group.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
com.amazonaws.internal.ListWithAutoConstructFlag tagsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(tags.size());
tagsCopy.addAll(tags);
this.tags = tagsCopy;
}
/**
* Any tags assigned to the security group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param tags Any tags assigned to the security group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public SecurityGroup withTags(Tag... tags) {
if (getTags() == null) setTags(new java.util.ArrayList(tags.length));
for (Tag value : tags) {
getTags().add(value);
}
return this;
}
/**
* Any tags assigned to the security group.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param tags Any tags assigned to the security group.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public SecurityGroup withTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag tagsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(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 (getOwnerId() != null) sb.append("OwnerId: " + getOwnerId() + ",");
if (getGroupName() != null) sb.append("GroupName: " + getGroupName() + ",");
if (getGroupId() != null) sb.append("GroupId: " + getGroupId() + ",");
if (getDescription() != null) sb.append("Description: " + getDescription() + ",");
if (getIpPermissions() != null) sb.append("IpPermissions: " + getIpPermissions() + ",");
if (getIpPermissionsEgress() != null) sb.append("IpPermissionsEgress: " + getIpPermissionsEgress() + ",");
if (getVpcId() != null) sb.append("VpcId: " + getVpcId() + ",");
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 + ((getOwnerId() == null) ? 0 : getOwnerId().hashCode());
hashCode = prime * hashCode + ((getGroupName() == null) ? 0 : getGroupName().hashCode());
hashCode = prime * hashCode + ((getGroupId() == null) ? 0 : getGroupId().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
hashCode = prime * hashCode + ((getIpPermissions() == null) ? 0 : getIpPermissions().hashCode());
hashCode = prime * hashCode + ((getIpPermissionsEgress() == null) ? 0 : getIpPermissionsEgress().hashCode());
hashCode = prime * hashCode + ((getVpcId() == null) ? 0 : getVpcId().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 SecurityGroup == false) return false;
SecurityGroup other = (SecurityGroup)obj;
if (other.getOwnerId() == null ^ this.getOwnerId() == null) return false;
if (other.getOwnerId() != null && other.getOwnerId().equals(this.getOwnerId()) == false) return false;
if (other.getGroupName() == null ^ this.getGroupName() == null) return false;
if (other.getGroupName() != null && other.getGroupName().equals(this.getGroupName()) == false) return false;
if (other.getGroupId() == null ^ this.getGroupId() == null) return false;
if (other.getGroupId() != null && other.getGroupId().equals(this.getGroupId()) == false) return false;
if (other.getDescription() == null ^ this.getDescription() == null) return false;
if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false;
if (other.getIpPermissions() == null ^ this.getIpPermissions() == null) return false;
if (other.getIpPermissions() != null && other.getIpPermissions().equals(this.getIpPermissions()) == false) return false;
if (other.getIpPermissionsEgress() == null ^ this.getIpPermissionsEgress() == null) return false;
if (other.getIpPermissionsEgress() != null && other.getIpPermissionsEgress().equals(this.getIpPermissionsEgress()) == 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.getTags() == null ^ this.getTags() == null) return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false;
return true;
}
}