/* * Copyright 2012-2017 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.cloudtrail.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** * <p> * A resource tag. * </p> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/cloudtrail-2013-11-01/ResourceTag" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ResourceTag implements Serializable, Cloneable, StructuredPojo { /** * <p> * Specifies the ARN of the resource. * </p> */ private String resourceId; /** * <p> * A list of tags. * </p> */ private com.amazonaws.internal.SdkInternalList<Tag> tagsList; /** * <p> * Specifies the ARN of the resource. * </p> * * @param resourceId * Specifies the ARN of the resource. */ public void setResourceId(String resourceId) { this.resourceId = resourceId; } /** * <p> * Specifies the ARN of the resource. * </p> * * @return Specifies the ARN of the resource. */ public String getResourceId() { return this.resourceId; } /** * <p> * Specifies the ARN of the resource. * </p> * * @param resourceId * Specifies the ARN of the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public ResourceTag withResourceId(String resourceId) { setResourceId(resourceId); return this; } /** * <p> * A list of tags. * </p> * * @return A list of tags. */ public java.util.List<Tag> getTagsList() { if (tagsList == null) { tagsList = new com.amazonaws.internal.SdkInternalList<Tag>(); } return tagsList; } /** * <p> * A list of tags. * </p> * * @param tagsList * A list of tags. */ public void setTagsList(java.util.Collection<Tag> tagsList) { if (tagsList == null) { this.tagsList = null; return; } this.tagsList = new com.amazonaws.internal.SdkInternalList<Tag>(tagsList); } /** * <p> * A list of tags. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setTagsList(java.util.Collection)} or {@link #withTagsList(java.util.Collection)} if you want to override * the existing values. * </p> * * @param tagsList * A list of tags. * @return Returns a reference to this object so that method calls can be chained together. */ public ResourceTag withTagsList(Tag... tagsList) { if (this.tagsList == null) { setTagsList(new com.amazonaws.internal.SdkInternalList<Tag>(tagsList.length)); } for (Tag ele : tagsList) { this.tagsList.add(ele); } return this; } /** * <p> * A list of tags. * </p> * * @param tagsList * A list of tags. * @return Returns a reference to this object so that method calls can be chained together. */ public ResourceTag withTagsList(java.util.Collection<Tag> tagsList) { setTagsList(tagsList); 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 (getResourceId() != null) sb.append("ResourceId: ").append(getResourceId()).append(","); if (getTagsList() != null) sb.append("TagsList: ").append(getTagsList()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ResourceTag == false) return false; ResourceTag other = (ResourceTag) obj; if (other.getResourceId() == null ^ this.getResourceId() == null) return false; if (other.getResourceId() != null && other.getResourceId().equals(this.getResourceId()) == false) return false; if (other.getTagsList() == null ^ this.getTagsList() == null) return false; if (other.getTagsList() != null && other.getTagsList().equals(this.getTagsList()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getResourceId() == null) ? 0 : getResourceId().hashCode()); hashCode = prime * hashCode + ((getTagsList() == null) ? 0 : getTagsList().hashCode()); return hashCode; } @Override public ResourceTag clone() { try { return (ResourceTag) 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.cloudtrail.model.transform.ResourceTagMarshaller.getInstance().marshall(this, protocolMarshaller); } }