/* * 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.codecommit.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Information about the reaction values provided by users on a comment. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ReactionForComment implements Serializable, Cloneable, StructuredPojo { /** ** The reaction for a specified comment. *
*/ private ReactionValueFormats reaction; /** ** The Amazon Resource Names (ARNs) of users who have provided reactions to the comment. *
*/ private java.util.List* A numerical count of users who reacted with the specified emoji whose identities have been subsequently deleted * from IAM. While these IAM users or roles no longer exist, the reactions might still appear in total reaction * counts. *
*/ private Integer reactionsFromDeletedUsersCount; /** ** The reaction for a specified comment. *
* * @param reaction * The reaction for a specified comment. */ public void setReaction(ReactionValueFormats reaction) { this.reaction = reaction; } /** ** The reaction for a specified comment. *
* * @return The reaction for a specified comment. */ public ReactionValueFormats getReaction() { return this.reaction; } /** ** The reaction for a specified comment. *
* * @param reaction * The reaction for a specified comment. * @return Returns a reference to this object so that method calls can be chained together. */ public ReactionForComment withReaction(ReactionValueFormats reaction) { setReaction(reaction); return this; } /** ** The Amazon Resource Names (ARNs) of users who have provided reactions to the comment. *
* * @return The Amazon Resource Names (ARNs) of users who have provided reactions to the comment. */ public java.util.List* The Amazon Resource Names (ARNs) of users who have provided reactions to the comment. *
* * @param reactionUsers * The Amazon Resource Names (ARNs) of users who have provided reactions to the comment. */ public void setReactionUsers(java.util.Collection* The Amazon Resource Names (ARNs) of users who have provided reactions to the comment. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setReactionUsers(java.util.Collection)} or {@link #withReactionUsers(java.util.Collection)} if you want * to override the existing values. *
* * @param reactionUsers * The Amazon Resource Names (ARNs) of users who have provided reactions to the comment. * @return Returns a reference to this object so that method calls can be chained together. */ public ReactionForComment withReactionUsers(String... reactionUsers) { if (this.reactionUsers == null) { setReactionUsers(new java.util.ArrayList* The Amazon Resource Names (ARNs) of users who have provided reactions to the comment. *
* * @param reactionUsers * The Amazon Resource Names (ARNs) of users who have provided reactions to the comment. * @return Returns a reference to this object so that method calls can be chained together. */ public ReactionForComment withReactionUsers(java.util.Collection* A numerical count of users who reacted with the specified emoji whose identities have been subsequently deleted * from IAM. While these IAM users or roles no longer exist, the reactions might still appear in total reaction * counts. *
* * @param reactionsFromDeletedUsersCount * A numerical count of users who reacted with the specified emoji whose identities have been subsequently * deleted from IAM. While these IAM users or roles no longer exist, the reactions might still appear in * total reaction counts. */ public void setReactionsFromDeletedUsersCount(Integer reactionsFromDeletedUsersCount) { this.reactionsFromDeletedUsersCount = reactionsFromDeletedUsersCount; } /** ** A numerical count of users who reacted with the specified emoji whose identities have been subsequently deleted * from IAM. While these IAM users or roles no longer exist, the reactions might still appear in total reaction * counts. *
* * @return A numerical count of users who reacted with the specified emoji whose identities have been subsequently * deleted from IAM. While these IAM users or roles no longer exist, the reactions might still appear in * total reaction counts. */ public Integer getReactionsFromDeletedUsersCount() { return this.reactionsFromDeletedUsersCount; } /** ** A numerical count of users who reacted with the specified emoji whose identities have been subsequently deleted * from IAM. While these IAM users or roles no longer exist, the reactions might still appear in total reaction * counts. *
* * @param reactionsFromDeletedUsersCount * A numerical count of users who reacted with the specified emoji whose identities have been subsequently * deleted from IAM. While these IAM users or roles no longer exist, the reactions might still appear in * total reaction counts. * @return Returns a reference to this object so that method calls can be chained together. */ public ReactionForComment withReactionsFromDeletedUsersCount(Integer reactionsFromDeletedUsersCount) { setReactionsFromDeletedUsersCount(reactionsFromDeletedUsersCount); 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 (getReaction() != null) sb.append("Reaction: ").append(getReaction()).append(","); if (getReactionUsers() != null) sb.append("ReactionUsers: ").append(getReactionUsers()).append(","); if (getReactionsFromDeletedUsersCount() != null) sb.append("ReactionsFromDeletedUsersCount: ").append(getReactionsFromDeletedUsersCount()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ReactionForComment == false) return false; ReactionForComment other = (ReactionForComment) obj; if (other.getReaction() == null ^ this.getReaction() == null) return false; if (other.getReaction() != null && other.getReaction().equals(this.getReaction()) == false) return false; if (other.getReactionUsers() == null ^ this.getReactionUsers() == null) return false; if (other.getReactionUsers() != null && other.getReactionUsers().equals(this.getReactionUsers()) == false) return false; if (other.getReactionsFromDeletedUsersCount() == null ^ this.getReactionsFromDeletedUsersCount() == null) return false; if (other.getReactionsFromDeletedUsersCount() != null && other.getReactionsFromDeletedUsersCount().equals(this.getReactionsFromDeletedUsersCount()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getReaction() == null) ? 0 : getReaction().hashCode()); hashCode = prime * hashCode + ((getReactionUsers() == null) ? 0 : getReactionUsers().hashCode()); hashCode = prime * hashCode + ((getReactionsFromDeletedUsersCount() == null) ? 0 : getReactionsFromDeletedUsersCount().hashCode()); return hashCode; } @Override public ReactionForComment clone() { try { return (ReactionForComment) 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.codecommit.model.transform.ReactionForCommentMarshaller.getInstance().marshall(this, protocolMarshaller); } }