/* * 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.s3control.model; import java.io.Serializable; import javax.annotation.Generated; /** *

* A container for specifying rule filters. The filters determine the subset of objects to which the rule applies. This * element is required only if you specify more than one filter. *

*

* For example: *

* * * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ReplicationRuleAndOperator implements Serializable, Cloneable { /** *

* An object key name prefix that identifies the subset of objects that the rule applies to. *

*/ private String prefix; /** *

* An array of tags that contain key and value pairs. *

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

* An object key name prefix that identifies the subset of objects that the rule applies to. *

* * @param prefix * An object key name prefix that identifies the subset of objects that the rule applies to. */ public void setPrefix(String prefix) { this.prefix = prefix; } /** *

* An object key name prefix that identifies the subset of objects that the rule applies to. *

* * @return An object key name prefix that identifies the subset of objects that the rule applies to. */ public String getPrefix() { return this.prefix; } /** *

* An object key name prefix that identifies the subset of objects that the rule applies to. *

* * @param prefix * An object key name prefix that identifies the subset of objects that the rule applies to. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicationRuleAndOperator withPrefix(String prefix) { setPrefix(prefix); return this; } /** *

* An array of tags that contain key and value pairs. *

* * @return An array of tags that contain key and value pairs. */ public java.util.List getTags() { return tags; } /** *

* An array of tags that contain key and value pairs. *

* * @param tags * An array of tags that contain key and value pairs. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* An array of tags that contain key and value pairs. *

*

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

* * @param tags * An array of tags that contain key and value pairs. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicationRuleAndOperator withTags(S3Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (S3Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* An array of tags that contain key and value pairs. *

* * @param tags * An array of tags that contain key and value pairs. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicationRuleAndOperator withTags(java.util.Collection tags) { setTags(tags); 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 (getPrefix() != null) sb.append("Prefix: ").append(getPrefix()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ReplicationRuleAndOperator == false) return false; ReplicationRuleAndOperator other = (ReplicationRuleAndOperator) obj; if (other.getPrefix() == null ^ this.getPrefix() == null) return false; if (other.getPrefix() != null && other.getPrefix().equals(this.getPrefix()) == 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; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPrefix() == null) ? 0 : getPrefix().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public ReplicationRuleAndOperator clone() { try { return (ReplicationRuleAndOperator) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }