All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.codegurureviewer.model.CodeReviewSummary Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon CodeGuru Reviewer module holds the client classes that are used for communicating with Amazon CodeGuru Reviewer Service

There is a newer version: 1.12.772
Show newest version
/*
 * 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.codegurureviewer.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Information about the summary of the code review. *

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

* The name of the code review. *

*/ private String name; /** *

* The Amazon Resource Name (ARN) of the CodeReview object. *

*/ private String codeReviewArn; /** *

* The name of the repository. *

*/ private String repositoryName; /** *

* The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services * account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket * repository, this is the username for the account that owns the repository. For an S3 repository, it can be the * username or Amazon Web Services account ID. *

*/ private String owner; /** *

* The provider type of the repository association. *

*/ private String providerType; /** *

* The state of the code review. *

*

* The valid code review states are: *

*
    *
  • *

    * Completed: The code review is complete. *

    *
  • *
  • *

    * Pending: The code review started and has not completed or failed. *

    *
  • *
  • *

    * Failed: The code review failed. *

    *
  • *
  • *

    * Deleting: The code review is being deleted. *

    *
  • *
*/ private String state; /** *

* The time, in milliseconds since the epoch, when the code review was created. *

*/ private java.util.Date createdTimeStamp; /** *

* The time, in milliseconds since the epoch, when the code review was last updated. *

*/ private java.util.Date lastUpdatedTimeStamp; /** *

* The type of the code review. *

*/ private String type; /** *

* The pull request ID for the code review. *

*/ private String pullRequestId; /** *

* The statistics from the code review. *

*/ private MetricsSummary metricsSummary; private SourceCodeType sourceCodeType; /** *

* The name of the code review. *

* * @param name * The name of the code review. */ public void setName(String name) { this.name = name; } /** *

* The name of the code review. *

* * @return The name of the code review. */ public String getName() { return this.name; } /** *

* The name of the code review. *

* * @param name * The name of the code review. * @return Returns a reference to this object so that method calls can be chained together. */ public CodeReviewSummary withName(String name) { setName(name); return this; } /** *

* The Amazon Resource Name (ARN) of the CodeReview object. *

* * @param codeReviewArn * The Amazon Resource Name (ARN) of the CodeReview object. */ public void setCodeReviewArn(String codeReviewArn) { this.codeReviewArn = codeReviewArn; } /** *

* The Amazon Resource Name (ARN) of the CodeReview object. *

* * @return The Amazon Resource Name (ARN) of the CodeReview * object. */ public String getCodeReviewArn() { return this.codeReviewArn; } /** *

* The Amazon Resource Name (ARN) of the CodeReview object. *

* * @param codeReviewArn * The Amazon Resource Name (ARN) of the CodeReview object. * @return Returns a reference to this object so that method calls can be chained together. */ public CodeReviewSummary withCodeReviewArn(String codeReviewArn) { setCodeReviewArn(codeReviewArn); return this; } /** *

* The name of the repository. *

* * @param repositoryName * The name of the repository. */ public void setRepositoryName(String repositoryName) { this.repositoryName = repositoryName; } /** *

* The name of the repository. *

* * @return The name of the repository. */ public String getRepositoryName() { return this.repositoryName; } /** *

* The name of the repository. *

* * @param repositoryName * The name of the repository. * @return Returns a reference to this object so that method calls can be chained together. */ public CodeReviewSummary withRepositoryName(String repositoryName) { setRepositoryName(repositoryName); return this; } /** *

* The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services * account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket * repository, this is the username for the account that owns the repository. For an S3 repository, it can be the * username or Amazon Web Services account ID. *

* * @param owner * The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web * Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or * Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, * it can be the username or Amazon Web Services account ID. */ public void setOwner(String owner) { this.owner = owner; } /** *

* The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services * account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket * repository, this is the username for the account that owns the repository. For an S3 repository, it can be the * username or Amazon Web Services account ID. *

* * @return The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web * Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or * Bitbucket repository, this is the username for the account that owns the repository. For an S3 * repository, it can be the username or Amazon Web Services account ID. */ public String getOwner() { return this.owner; } /** *

* The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web Services * account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or Bitbucket * repository, this is the username for the account that owns the repository. For an S3 repository, it can be the * username or Amazon Web Services account ID. *

* * @param owner * The owner of the repository. For an Amazon Web Services CodeCommit repository, this is the Amazon Web * Services account ID of the account that owns the repository. For a GitHub, GitHub Enterprise Server, or * Bitbucket repository, this is the username for the account that owns the repository. For an S3 repository, * it can be the username or Amazon Web Services account ID. * @return Returns a reference to this object so that method calls can be chained together. */ public CodeReviewSummary withOwner(String owner) { setOwner(owner); return this; } /** *

* The provider type of the repository association. *

* * @param providerType * The provider type of the repository association. * @see ProviderType */ public void setProviderType(String providerType) { this.providerType = providerType; } /** *

* The provider type of the repository association. *

* * @return The provider type of the repository association. * @see ProviderType */ public String getProviderType() { return this.providerType; } /** *

* The provider type of the repository association. *

* * @param providerType * The provider type of the repository association. * @return Returns a reference to this object so that method calls can be chained together. * @see ProviderType */ public CodeReviewSummary withProviderType(String providerType) { setProviderType(providerType); return this; } /** *

* The provider type of the repository association. *

* * @param providerType * The provider type of the repository association. * @return Returns a reference to this object so that method calls can be chained together. * @see ProviderType */ public CodeReviewSummary withProviderType(ProviderType providerType) { this.providerType = providerType.toString(); return this; } /** *

* The state of the code review. *

*

* The valid code review states are: *

*
    *
  • *

    * Completed: The code review is complete. *

    *
  • *
  • *

    * Pending: The code review started and has not completed or failed. *

    *
  • *
  • *

    * Failed: The code review failed. *

    *
  • *
  • *

    * Deleting: The code review is being deleted. *

    *
  • *
* * @param state * The state of the code review.

*

* The valid code review states are: *

*
    *
  • *

    * Completed: The code review is complete. *

    *
  • *
  • *

    * Pending: The code review started and has not completed or failed. *

    *
  • *
  • *

    * Failed: The code review failed. *

    *
  • *
  • *

    * Deleting: The code review is being deleted. *

    *
  • * @see JobState */ public void setState(String state) { this.state = state; } /** *

    * The state of the code review. *

    *

    * The valid code review states are: *

    *
      *
    • *

      * Completed: The code review is complete. *

      *
    • *
    • *

      * Pending: The code review started and has not completed or failed. *

      *
    • *
    • *

      * Failed: The code review failed. *

      *
    • *
    • *

      * Deleting: The code review is being deleted. *

      *
    • *
    * * @return The state of the code review.

    *

    * The valid code review states are: *

    *
      *
    • *

      * Completed: The code review is complete. *

      *
    • *
    • *

      * Pending: The code review started and has not completed or failed. *

      *
    • *
    • *

      * Failed: The code review failed. *

      *
    • *
    • *

      * Deleting: The code review is being deleted. *

      *
    • * @see JobState */ public String getState() { return this.state; } /** *

      * The state of the code review. *

      *

      * The valid code review states are: *

      *
        *
      • *

        * Completed: The code review is complete. *

        *
      • *
      • *

        * Pending: The code review started and has not completed or failed. *

        *
      • *
      • *

        * Failed: The code review failed. *

        *
      • *
      • *

        * Deleting: The code review is being deleted. *

        *
      • *
      * * @param state * The state of the code review.

      *

      * The valid code review states are: *

      *
        *
      • *

        * Completed: The code review is complete. *

        *
      • *
      • *

        * Pending: The code review started and has not completed or failed. *

        *
      • *
      • *

        * Failed: The code review failed. *

        *
      • *
      • *

        * Deleting: The code review is being deleted. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. * @see JobState */ public CodeReviewSummary withState(String state) { setState(state); return this; } /** *

        * The state of the code review. *

        *

        * The valid code review states are: *

        *
          *
        • *

          * Completed: The code review is complete. *

          *
        • *
        • *

          * Pending: The code review started and has not completed or failed. *

          *
        • *
        • *

          * Failed: The code review failed. *

          *
        • *
        • *

          * Deleting: The code review is being deleted. *

          *
        • *
        * * @param state * The state of the code review.

        *

        * The valid code review states are: *

        *
          *
        • *

          * Completed: The code review is complete. *

          *
        • *
        • *

          * Pending: The code review started and has not completed or failed. *

          *
        • *
        • *

          * Failed: The code review failed. *

          *
        • *
        • *

          * Deleting: The code review is being deleted. *

          *
        • * @return Returns a reference to this object so that method calls can be chained together. * @see JobState */ public CodeReviewSummary withState(JobState state) { this.state = state.toString(); return this; } /** *

          * The time, in milliseconds since the epoch, when the code review was created. *

          * * @param createdTimeStamp * The time, in milliseconds since the epoch, when the code review was created. */ public void setCreatedTimeStamp(java.util.Date createdTimeStamp) { this.createdTimeStamp = createdTimeStamp; } /** *

          * The time, in milliseconds since the epoch, when the code review was created. *

          * * @return The time, in milliseconds since the epoch, when the code review was created. */ public java.util.Date getCreatedTimeStamp() { return this.createdTimeStamp; } /** *

          * The time, in milliseconds since the epoch, when the code review was created. *

          * * @param createdTimeStamp * The time, in milliseconds since the epoch, when the code review was created. * @return Returns a reference to this object so that method calls can be chained together. */ public CodeReviewSummary withCreatedTimeStamp(java.util.Date createdTimeStamp) { setCreatedTimeStamp(createdTimeStamp); return this; } /** *

          * The time, in milliseconds since the epoch, when the code review was last updated. *

          * * @param lastUpdatedTimeStamp * The time, in milliseconds since the epoch, when the code review was last updated. */ public void setLastUpdatedTimeStamp(java.util.Date lastUpdatedTimeStamp) { this.lastUpdatedTimeStamp = lastUpdatedTimeStamp; } /** *

          * The time, in milliseconds since the epoch, when the code review was last updated. *

          * * @return The time, in milliseconds since the epoch, when the code review was last updated. */ public java.util.Date getLastUpdatedTimeStamp() { return this.lastUpdatedTimeStamp; } /** *

          * The time, in milliseconds since the epoch, when the code review was last updated. *

          * * @param lastUpdatedTimeStamp * The time, in milliseconds since the epoch, when the code review was last updated. * @return Returns a reference to this object so that method calls can be chained together. */ public CodeReviewSummary withLastUpdatedTimeStamp(java.util.Date lastUpdatedTimeStamp) { setLastUpdatedTimeStamp(lastUpdatedTimeStamp); return this; } /** *

          * The type of the code review. *

          * * @param type * The type of the code review. * @see Type */ public void setType(String type) { this.type = type; } /** *

          * The type of the code review. *

          * * @return The type of the code review. * @see Type */ public String getType() { return this.type; } /** *

          * The type of the code review. *

          * * @param type * The type of the code review. * @return Returns a reference to this object so that method calls can be chained together. * @see Type */ public CodeReviewSummary withType(String type) { setType(type); return this; } /** *

          * The type of the code review. *

          * * @param type * The type of the code review. * @return Returns a reference to this object so that method calls can be chained together. * @see Type */ public CodeReviewSummary withType(Type type) { this.type = type.toString(); return this; } /** *

          * The pull request ID for the code review. *

          * * @param pullRequestId * The pull request ID for the code review. */ public void setPullRequestId(String pullRequestId) { this.pullRequestId = pullRequestId; } /** *

          * The pull request ID for the code review. *

          * * @return The pull request ID for the code review. */ public String getPullRequestId() { return this.pullRequestId; } /** *

          * The pull request ID for the code review. *

          * * @param pullRequestId * The pull request ID for the code review. * @return Returns a reference to this object so that method calls can be chained together. */ public CodeReviewSummary withPullRequestId(String pullRequestId) { setPullRequestId(pullRequestId); return this; } /** *

          * The statistics from the code review. *

          * * @param metricsSummary * The statistics from the code review. */ public void setMetricsSummary(MetricsSummary metricsSummary) { this.metricsSummary = metricsSummary; } /** *

          * The statistics from the code review. *

          * * @return The statistics from the code review. */ public MetricsSummary getMetricsSummary() { return this.metricsSummary; } /** *

          * The statistics from the code review. *

          * * @param metricsSummary * The statistics from the code review. * @return Returns a reference to this object so that method calls can be chained together. */ public CodeReviewSummary withMetricsSummary(MetricsSummary metricsSummary) { setMetricsSummary(metricsSummary); return this; } /** * @param sourceCodeType */ public void setSourceCodeType(SourceCodeType sourceCodeType) { this.sourceCodeType = sourceCodeType; } /** * @return */ public SourceCodeType getSourceCodeType() { return this.sourceCodeType; } /** * @param sourceCodeType * @return Returns a reference to this object so that method calls can be chained together. */ public CodeReviewSummary withSourceCodeType(SourceCodeType sourceCodeType) { setSourceCodeType(sourceCodeType); 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 (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getCodeReviewArn() != null) sb.append("CodeReviewArn: ").append(getCodeReviewArn()).append(","); if (getRepositoryName() != null) sb.append("RepositoryName: ").append(getRepositoryName()).append(","); if (getOwner() != null) sb.append("Owner: ").append(getOwner()).append(","); if (getProviderType() != null) sb.append("ProviderType: ").append(getProviderType()).append(","); if (getState() != null) sb.append("State: ").append(getState()).append(","); if (getCreatedTimeStamp() != null) sb.append("CreatedTimeStamp: ").append(getCreatedTimeStamp()).append(","); if (getLastUpdatedTimeStamp() != null) sb.append("LastUpdatedTimeStamp: ").append(getLastUpdatedTimeStamp()).append(","); if (getType() != null) sb.append("Type: ").append(getType()).append(","); if (getPullRequestId() != null) sb.append("PullRequestId: ").append(getPullRequestId()).append(","); if (getMetricsSummary() != null) sb.append("MetricsSummary: ").append(getMetricsSummary()).append(","); if (getSourceCodeType() != null) sb.append("SourceCodeType: ").append(getSourceCodeType()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CodeReviewSummary == false) return false; CodeReviewSummary other = (CodeReviewSummary) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getCodeReviewArn() == null ^ this.getCodeReviewArn() == null) return false; if (other.getCodeReviewArn() != null && other.getCodeReviewArn().equals(this.getCodeReviewArn()) == 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.getOwner() == null ^ this.getOwner() == null) return false; if (other.getOwner() != null && other.getOwner().equals(this.getOwner()) == false) return false; if (other.getProviderType() == null ^ this.getProviderType() == null) return false; if (other.getProviderType() != null && other.getProviderType().equals(this.getProviderType()) == false) return false; if (other.getState() == null ^ this.getState() == null) return false; if (other.getState() != null && other.getState().equals(this.getState()) == false) return false; if (other.getCreatedTimeStamp() == null ^ this.getCreatedTimeStamp() == null) return false; if (other.getCreatedTimeStamp() != null && other.getCreatedTimeStamp().equals(this.getCreatedTimeStamp()) == false) return false; if (other.getLastUpdatedTimeStamp() == null ^ this.getLastUpdatedTimeStamp() == null) return false; if (other.getLastUpdatedTimeStamp() != null && other.getLastUpdatedTimeStamp().equals(this.getLastUpdatedTimeStamp()) == false) return false; if (other.getType() == null ^ this.getType() == null) return false; if (other.getType() != null && other.getType().equals(this.getType()) == false) return false; if (other.getPullRequestId() == null ^ this.getPullRequestId() == null) return false; if (other.getPullRequestId() != null && other.getPullRequestId().equals(this.getPullRequestId()) == false) return false; if (other.getMetricsSummary() == null ^ this.getMetricsSummary() == null) return false; if (other.getMetricsSummary() != null && other.getMetricsSummary().equals(this.getMetricsSummary()) == false) return false; if (other.getSourceCodeType() == null ^ this.getSourceCodeType() == null) return false; if (other.getSourceCodeType() != null && other.getSourceCodeType().equals(this.getSourceCodeType()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getCodeReviewArn() == null) ? 0 : getCodeReviewArn().hashCode()); hashCode = prime * hashCode + ((getRepositoryName() == null) ? 0 : getRepositoryName().hashCode()); hashCode = prime * hashCode + ((getOwner() == null) ? 0 : getOwner().hashCode()); hashCode = prime * hashCode + ((getProviderType() == null) ? 0 : getProviderType().hashCode()); hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getCreatedTimeStamp() == null) ? 0 : getCreatedTimeStamp().hashCode()); hashCode = prime * hashCode + ((getLastUpdatedTimeStamp() == null) ? 0 : getLastUpdatedTimeStamp().hashCode()); hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode()); hashCode = prime * hashCode + ((getPullRequestId() == null) ? 0 : getPullRequestId().hashCode()); hashCode = prime * hashCode + ((getMetricsSummary() == null) ? 0 : getMetricsSummary().hashCode()); hashCode = prime * hashCode + ((getSourceCodeType() == null) ? 0 : getSourceCodeType().hashCode()); return hashCode; } @Override public CodeReviewSummary clone() { try { return (CodeReviewSummary) 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.codegurureviewer.model.transform.CodeReviewSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy