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

com.amazonaws.services.codeartifact.model.PackageGroupSummary Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2019-2024 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.codeartifact.model;

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

/**
 * 

* Details about a package group. *

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

* The ARN of the package group. *

*/ private String arn; /** *

* The pattern of the package group. The pattern determines which packages are associated with the package group. *

*/ private String pattern; /** *

* The domain that contains the package group. *

*/ private String domainName; /** *

* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes * or spaces. *

*/ private String domainOwner; /** *

* A timestamp that represents the date and time the repository was created. *

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

* The contact information of the package group. *

*/ private String contactInfo; /** *

* The description of the package group. *

*/ private String description; /** *

* Details about the package origin configuration of a package group. *

*/ private PackageGroupOriginConfiguration originConfiguration; /** *

* The direct parent package group of the package group. *

*/ private PackageGroupReference parent; /** *

* The ARN of the package group. *

* * @param arn * The ARN of the package group. */ public void setArn(String arn) { this.arn = arn; } /** *

* The ARN of the package group. *

* * @return The ARN of the package group. */ public String getArn() { return this.arn; } /** *

* The ARN of the package group. *

* * @param arn * The ARN of the package group. * @return Returns a reference to this object so that method calls can be chained together. */ public PackageGroupSummary withArn(String arn) { setArn(arn); return this; } /** *

* The pattern of the package group. The pattern determines which packages are associated with the package group. *

* * @param pattern * The pattern of the package group. The pattern determines which packages are associated with the package * group. */ public void setPattern(String pattern) { this.pattern = pattern; } /** *

* The pattern of the package group. The pattern determines which packages are associated with the package group. *

* * @return The pattern of the package group. The pattern determines which packages are associated with the package * group. */ public String getPattern() { return this.pattern; } /** *

* The pattern of the package group. The pattern determines which packages are associated with the package group. *

* * @param pattern * The pattern of the package group. The pattern determines which packages are associated with the package * group. * @return Returns a reference to this object so that method calls can be chained together. */ public PackageGroupSummary withPattern(String pattern) { setPattern(pattern); return this; } /** *

* The domain that contains the package group. *

* * @param domainName * The domain that contains the package group. */ public void setDomainName(String domainName) { this.domainName = domainName; } /** *

* The domain that contains the package group. *

* * @return The domain that contains the package group. */ public String getDomainName() { return this.domainName; } /** *

* The domain that contains the package group. *

* * @param domainName * The domain that contains the package group. * @return Returns a reference to this object so that method calls can be chained together. */ public PackageGroupSummary withDomainName(String domainName) { setDomainName(domainName); return this; } /** *

* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes * or spaces. *

* * @param domainOwner * The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include * dashes or spaces. */ public void setDomainOwner(String domainOwner) { this.domainOwner = domainOwner; } /** *

* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes * or spaces. *

* * @return The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include * dashes or spaces. */ public String getDomainOwner() { return this.domainOwner; } /** *

* The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes * or spaces. *

* * @param domainOwner * The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include * dashes or spaces. * @return Returns a reference to this object so that method calls can be chained together. */ public PackageGroupSummary withDomainOwner(String domainOwner) { setDomainOwner(domainOwner); return this; } /** *

* A timestamp that represents the date and time the repository was created. *

* * @param createdTime * A timestamp that represents the date and time the repository was created. */ public void setCreatedTime(java.util.Date createdTime) { this.createdTime = createdTime; } /** *

* A timestamp that represents the date and time the repository was created. *

* * @return A timestamp that represents the date and time the repository was created. */ public java.util.Date getCreatedTime() { return this.createdTime; } /** *

* A timestamp that represents the date and time the repository was created. *

* * @param createdTime * A timestamp that represents the date and time the repository was created. * @return Returns a reference to this object so that method calls can be chained together. */ public PackageGroupSummary withCreatedTime(java.util.Date createdTime) { setCreatedTime(createdTime); return this; } /** *

* The contact information of the package group. *

* * @param contactInfo * The contact information of the package group. */ public void setContactInfo(String contactInfo) { this.contactInfo = contactInfo; } /** *

* The contact information of the package group. *

* * @return The contact information of the package group. */ public String getContactInfo() { return this.contactInfo; } /** *

* The contact information of the package group. *

* * @param contactInfo * The contact information of the package group. * @return Returns a reference to this object so that method calls can be chained together. */ public PackageGroupSummary withContactInfo(String contactInfo) { setContactInfo(contactInfo); return this; } /** *

* The description of the package group. *

* * @param description * The description of the package group. */ public void setDescription(String description) { this.description = description; } /** *

* The description of the package group. *

* * @return The description of the package group. */ public String getDescription() { return this.description; } /** *

* The description of the package group. *

* * @param description * The description of the package group. * @return Returns a reference to this object so that method calls can be chained together. */ public PackageGroupSummary withDescription(String description) { setDescription(description); return this; } /** *

* Details about the package origin configuration of a package group. *

* * @param originConfiguration * Details about the package origin configuration of a package group. */ public void setOriginConfiguration(PackageGroupOriginConfiguration originConfiguration) { this.originConfiguration = originConfiguration; } /** *

* Details about the package origin configuration of a package group. *

* * @return Details about the package origin configuration of a package group. */ public PackageGroupOriginConfiguration getOriginConfiguration() { return this.originConfiguration; } /** *

* Details about the package origin configuration of a package group. *

* * @param originConfiguration * Details about the package origin configuration of a package group. * @return Returns a reference to this object so that method calls can be chained together. */ public PackageGroupSummary withOriginConfiguration(PackageGroupOriginConfiguration originConfiguration) { setOriginConfiguration(originConfiguration); return this; } /** *

* The direct parent package group of the package group. *

* * @param parent * The direct parent package group of the package group. */ public void setParent(PackageGroupReference parent) { this.parent = parent; } /** *

* The direct parent package group of the package group. *

* * @return The direct parent package group of the package group. */ public PackageGroupReference getParent() { return this.parent; } /** *

* The direct parent package group of the package group. *

* * @param parent * The direct parent package group of the package group. * @return Returns a reference to this object so that method calls can be chained together. */ public PackageGroupSummary withParent(PackageGroupReference parent) { setParent(parent); 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 (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getPattern() != null) sb.append("Pattern: ").append(getPattern()).append(","); if (getDomainName() != null) sb.append("DomainName: ").append(getDomainName()).append(","); if (getDomainOwner() != null) sb.append("DomainOwner: ").append(getDomainOwner()).append(","); if (getCreatedTime() != null) sb.append("CreatedTime: ").append(getCreatedTime()).append(","); if (getContactInfo() != null) sb.append("ContactInfo: ").append(getContactInfo()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getOriginConfiguration() != null) sb.append("OriginConfiguration: ").append(getOriginConfiguration()).append(","); if (getParent() != null) sb.append("Parent: ").append(getParent()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PackageGroupSummary == false) return false; PackageGroupSummary other = (PackageGroupSummary) obj; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getPattern() == null ^ this.getPattern() == null) return false; if (other.getPattern() != null && other.getPattern().equals(this.getPattern()) == false) return false; if (other.getDomainName() == null ^ this.getDomainName() == null) return false; if (other.getDomainName() != null && other.getDomainName().equals(this.getDomainName()) == false) return false; if (other.getDomainOwner() == null ^ this.getDomainOwner() == null) return false; if (other.getDomainOwner() != null && other.getDomainOwner().equals(this.getDomainOwner()) == false) return false; if (other.getCreatedTime() == null ^ this.getCreatedTime() == null) return false; if (other.getCreatedTime() != null && other.getCreatedTime().equals(this.getCreatedTime()) == false) return false; if (other.getContactInfo() == null ^ this.getContactInfo() == null) return false; if (other.getContactInfo() != null && other.getContactInfo().equals(this.getContactInfo()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getOriginConfiguration() == null ^ this.getOriginConfiguration() == null) return false; if (other.getOriginConfiguration() != null && other.getOriginConfiguration().equals(this.getOriginConfiguration()) == false) return false; if (other.getParent() == null ^ this.getParent() == null) return false; if (other.getParent() != null && other.getParent().equals(this.getParent()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getPattern() == null) ? 0 : getPattern().hashCode()); hashCode = prime * hashCode + ((getDomainName() == null) ? 0 : getDomainName().hashCode()); hashCode = prime * hashCode + ((getDomainOwner() == null) ? 0 : getDomainOwner().hashCode()); hashCode = prime * hashCode + ((getCreatedTime() == null) ? 0 : getCreatedTime().hashCode()); hashCode = prime * hashCode + ((getContactInfo() == null) ? 0 : getContactInfo().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getOriginConfiguration() == null) ? 0 : getOriginConfiguration().hashCode()); hashCode = prime * hashCode + ((getParent() == null) ? 0 : getParent().hashCode()); return hashCode; } @Override public PackageGroupSummary clone() { try { return (PackageGroupSummary) 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.codeartifact.model.transform.PackageGroupSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy