/* * Copyright 2018-2023 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.codebuild.model; import java.io.Serializable; import javax.annotation.Generated; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class BatchGetReportGroupsResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* The array of report groups returned by BatchGetReportGroups. *

*/ private java.util.List reportGroups; /** *

* An array of ARNs passed to BatchGetReportGroups that are not associated with a * ReportGroup. *

*/ private java.util.List reportGroupsNotFound; /** *

* The array of report groups returned by BatchGetReportGroups. *

* * @return The array of report groups returned by BatchGetReportGroups. */ public java.util.List getReportGroups() { return reportGroups; } /** *

* The array of report groups returned by BatchGetReportGroups. *

* * @param reportGroups * The array of report groups returned by BatchGetReportGroups. */ public void setReportGroups(java.util.Collection reportGroups) { if (reportGroups == null) { this.reportGroups = null; return; } this.reportGroups = new java.util.ArrayList(reportGroups); } /** *

* The array of report groups returned by BatchGetReportGroups. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setReportGroups(java.util.Collection)} or {@link #withReportGroups(java.util.Collection)} if you want to * override the existing values. *

* * @param reportGroups * The array of report groups returned by BatchGetReportGroups. * @return Returns a reference to this object so that method calls can be chained together. */ public BatchGetReportGroupsResult withReportGroups(ReportGroup... reportGroups) { if (this.reportGroups == null) { setReportGroups(new java.util.ArrayList(reportGroups.length)); } for (ReportGroup ele : reportGroups) { this.reportGroups.add(ele); } return this; } /** *

* The array of report groups returned by BatchGetReportGroups. *

* * @param reportGroups * The array of report groups returned by BatchGetReportGroups. * @return Returns a reference to this object so that method calls can be chained together. */ public BatchGetReportGroupsResult withReportGroups(java.util.Collection reportGroups) { setReportGroups(reportGroups); return this; } /** *

* An array of ARNs passed to BatchGetReportGroups that are not associated with a * ReportGroup. *

* * @return An array of ARNs passed to BatchGetReportGroups that are not associated with a * ReportGroup. */ public java.util.List getReportGroupsNotFound() { return reportGroupsNotFound; } /** *

* An array of ARNs passed to BatchGetReportGroups that are not associated with a * ReportGroup. *

* * @param reportGroupsNotFound * An array of ARNs passed to BatchGetReportGroups that are not associated with a * ReportGroup. */ public void setReportGroupsNotFound(java.util.Collection reportGroupsNotFound) { if (reportGroupsNotFound == null) { this.reportGroupsNotFound = null; return; } this.reportGroupsNotFound = new java.util.ArrayList(reportGroupsNotFound); } /** *

* An array of ARNs passed to BatchGetReportGroups that are not associated with a * ReportGroup. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setReportGroupsNotFound(java.util.Collection)} or {@link #withReportGroupsNotFound(java.util.Collection)} * if you want to override the existing values. *

* * @param reportGroupsNotFound * An array of ARNs passed to BatchGetReportGroups that are not associated with a * ReportGroup. * @return Returns a reference to this object so that method calls can be chained together. */ public BatchGetReportGroupsResult withReportGroupsNotFound(String... reportGroupsNotFound) { if (this.reportGroupsNotFound == null) { setReportGroupsNotFound(new java.util.ArrayList(reportGroupsNotFound.length)); } for (String ele : reportGroupsNotFound) { this.reportGroupsNotFound.add(ele); } return this; } /** *

* An array of ARNs passed to BatchGetReportGroups that are not associated with a * ReportGroup. *

* * @param reportGroupsNotFound * An array of ARNs passed to BatchGetReportGroups that are not associated with a * ReportGroup. * @return Returns a reference to this object so that method calls can be chained together. */ public BatchGetReportGroupsResult withReportGroupsNotFound(java.util.Collection reportGroupsNotFound) { setReportGroupsNotFound(reportGroupsNotFound); 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 (getReportGroups() != null) sb.append("ReportGroups: ").append(getReportGroups()).append(","); if (getReportGroupsNotFound() != null) sb.append("ReportGroupsNotFound: ").append(getReportGroupsNotFound()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof BatchGetReportGroupsResult == false) return false; BatchGetReportGroupsResult other = (BatchGetReportGroupsResult) obj; if (other.getReportGroups() == null ^ this.getReportGroups() == null) return false; if (other.getReportGroups() != null && other.getReportGroups().equals(this.getReportGroups()) == false) return false; if (other.getReportGroupsNotFound() == null ^ this.getReportGroupsNotFound() == null) return false; if (other.getReportGroupsNotFound() != null && other.getReportGroupsNotFound().equals(this.getReportGroupsNotFound()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getReportGroups() == null) ? 0 : getReportGroups().hashCode()); hashCode = prime * hashCode + ((getReportGroupsNotFound() == null) ? 0 : getReportGroupsNotFound().hashCode()); return hashCode; } @Override public BatchGetReportGroupsResult clone() { try { return (BatchGetReportGroupsResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }