/* * 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.AmazonWebServiceRequest; /** * * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class GetCommentsForPullRequestRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The system-generated ID of the pull request. To get this ID, use ListPullRequests. *
*/ private String pullRequestId; /** ** The name of the repository that contains the pull request. *
*/ private String repositoryName; /** ** The full commit ID of the commit in the destination branch that was the tip of the branch at the time the pull * request was created. *
*/ private String beforeCommitId; /** ** The full commit ID of the commit in the source branch that was the tip of the branch at the time the comment was * made. *
*/ private String afterCommitId; /** ** An enumeration token that, when provided in a request, returns the next batch of the results. *
*/ private String nextToken; /** ** A non-zero, non-negative integer used to limit the number of returned results. The default is 100 comments. You * can return up to 500 comments with a single request. *
*/ private Integer maxResults; /** ** The system-generated ID of the pull request. To get this ID, use ListPullRequests. *
* * @param pullRequestId * The system-generated ID of the pull request. To get this ID, use ListPullRequests. */ public void setPullRequestId(String pullRequestId) { this.pullRequestId = pullRequestId; } /** ** The system-generated ID of the pull request. To get this ID, use ListPullRequests. *
* * @return The system-generated ID of the pull request. To get this ID, use ListPullRequests. */ public String getPullRequestId() { return this.pullRequestId; } /** ** The system-generated ID of the pull request. To get this ID, use ListPullRequests. *
* * @param pullRequestId * The system-generated ID of the pull request. To get this ID, use ListPullRequests. * @return Returns a reference to this object so that method calls can be chained together. */ public GetCommentsForPullRequestRequest withPullRequestId(String pullRequestId) { setPullRequestId(pullRequestId); return this; } /** ** The name of the repository that contains the pull request. *
* * @param repositoryName * The name of the repository that contains the pull request. */ public void setRepositoryName(String repositoryName) { this.repositoryName = repositoryName; } /** ** The name of the repository that contains the pull request. *
* * @return The name of the repository that contains the pull request. */ public String getRepositoryName() { return this.repositoryName; } /** ** The name of the repository that contains the pull request. *
* * @param repositoryName * The name of the repository that contains the pull request. * @return Returns a reference to this object so that method calls can be chained together. */ public GetCommentsForPullRequestRequest withRepositoryName(String repositoryName) { setRepositoryName(repositoryName); return this; } /** ** The full commit ID of the commit in the destination branch that was the tip of the branch at the time the pull * request was created. *
* * @param beforeCommitId * The full commit ID of the commit in the destination branch that was the tip of the branch at the time the * pull request was created. */ public void setBeforeCommitId(String beforeCommitId) { this.beforeCommitId = beforeCommitId; } /** ** The full commit ID of the commit in the destination branch that was the tip of the branch at the time the pull * request was created. *
* * @return The full commit ID of the commit in the destination branch that was the tip of the branch at the time the * pull request was created. */ public String getBeforeCommitId() { return this.beforeCommitId; } /** ** The full commit ID of the commit in the destination branch that was the tip of the branch at the time the pull * request was created. *
* * @param beforeCommitId * The full commit ID of the commit in the destination branch that was the tip of the branch at the time the * pull request was created. * @return Returns a reference to this object so that method calls can be chained together. */ public GetCommentsForPullRequestRequest withBeforeCommitId(String beforeCommitId) { setBeforeCommitId(beforeCommitId); return this; } /** ** The full commit ID of the commit in the source branch that was the tip of the branch at the time the comment was * made. *
* * @param afterCommitId * The full commit ID of the commit in the source branch that was the tip of the branch at the time the * comment was made. */ public void setAfterCommitId(String afterCommitId) { this.afterCommitId = afterCommitId; } /** ** The full commit ID of the commit in the source branch that was the tip of the branch at the time the comment was * made. *
* * @return The full commit ID of the commit in the source branch that was the tip of the branch at the time the * comment was made. */ public String getAfterCommitId() { return this.afterCommitId; } /** ** The full commit ID of the commit in the source branch that was the tip of the branch at the time the comment was * made. *
* * @param afterCommitId * The full commit ID of the commit in the source branch that was the tip of the branch at the time the * comment was made. * @return Returns a reference to this object so that method calls can be chained together. */ public GetCommentsForPullRequestRequest withAfterCommitId(String afterCommitId) { setAfterCommitId(afterCommitId); return this; } /** ** An enumeration token that, when provided in a request, returns the next batch of the results. *
* * @param nextToken * An enumeration token that, when provided in a request, returns the next batch of the results. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** ** An enumeration token that, when provided in a request, returns the next batch of the results. *
* * @return An enumeration token that, when provided in a request, returns the next batch of the results. */ public String getNextToken() { return this.nextToken; } /** ** An enumeration token that, when provided in a request, returns the next batch of the results. *
* * @param nextToken * An enumeration token that, when provided in a request, returns the next batch of the results. * @return Returns a reference to this object so that method calls can be chained together. */ public GetCommentsForPullRequestRequest withNextToken(String nextToken) { setNextToken(nextToken); return this; } /** ** A non-zero, non-negative integer used to limit the number of returned results. The default is 100 comments. You * can return up to 500 comments with a single request. *
* * @param maxResults * A non-zero, non-negative integer used to limit the number of returned results. The default is 100 * comments. You can return up to 500 comments with a single request. */ public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } /** ** A non-zero, non-negative integer used to limit the number of returned results. The default is 100 comments. You * can return up to 500 comments with a single request. *
* * @return A non-zero, non-negative integer used to limit the number of returned results. The default is 100 * comments. You can return up to 500 comments with a single request. */ public Integer getMaxResults() { return this.maxResults; } /** ** A non-zero, non-negative integer used to limit the number of returned results. The default is 100 comments. You * can return up to 500 comments with a single request. *
* * @param maxResults * A non-zero, non-negative integer used to limit the number of returned results. The default is 100 * comments. You can return up to 500 comments with a single request. * @return Returns a reference to this object so that method calls can be chained together. */ public GetCommentsForPullRequestRequest withMaxResults(Integer maxResults) { setMaxResults(maxResults); 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 (getPullRequestId() != null) sb.append("PullRequestId: ").append(getPullRequestId()).append(","); if (getRepositoryName() != null) sb.append("RepositoryName: ").append(getRepositoryName()).append(","); if (getBeforeCommitId() != null) sb.append("BeforeCommitId: ").append(getBeforeCommitId()).append(","); if (getAfterCommitId() != null) sb.append("AfterCommitId: ").append(getAfterCommitId()).append(","); if (getNextToken() != null) sb.append("NextToken: ").append(getNextToken()).append(","); if (getMaxResults() != null) sb.append("MaxResults: ").append(getMaxResults()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetCommentsForPullRequestRequest == false) return false; GetCommentsForPullRequestRequest other = (GetCommentsForPullRequestRequest) obj; if (other.getPullRequestId() == null ^ this.getPullRequestId() == null) return false; if (other.getPullRequestId() != null && other.getPullRequestId().equals(this.getPullRequestId()) == false) return false; if (other.getRepositoryName() == null ^ this.getRepositoryName() == null) return false; if (other.getRepositoryName() != null && other.getRepositoryName().equals(this.getRepositoryName()) == false) return false; if (other.getBeforeCommitId() == null ^ this.getBeforeCommitId() == null) return false; if (other.getBeforeCommitId() != null && other.getBeforeCommitId().equals(this.getBeforeCommitId()) == false) return false; if (other.getAfterCommitId() == null ^ this.getAfterCommitId() == null) return false; if (other.getAfterCommitId() != null && other.getAfterCommitId().equals(this.getAfterCommitId()) == false) return false; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; if (other.getMaxResults() == null ^ this.getMaxResults() == null) return false; if (other.getMaxResults() != null && other.getMaxResults().equals(this.getMaxResults()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPullRequestId() == null) ? 0 : getPullRequestId().hashCode()); hashCode = prime * hashCode + ((getRepositoryName() == null) ? 0 : getRepositoryName().hashCode()); hashCode = prime * hashCode + ((getBeforeCommitId() == null) ? 0 : getBeforeCommitId().hashCode()); hashCode = prime * hashCode + ((getAfterCommitId() == null) ? 0 : getAfterCommitId().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode()); return hashCode; } @Override public GetCommentsForPullRequestRequest clone() { return (GetCommentsForPullRequestRequest) super.clone(); } }