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

* Contains information about a server certificate. *

*

* This data type is used as a response element in the GetServerCertificate operation. *

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

* The meta information of the server certificate, such as its name, path, ID, and ARN. *

*/ private ServerCertificateMetadata serverCertificateMetadata; /** *

* The contents of the public key certificate. *

*/ private String certificateBody; /** *

* The contents of the public key certificate chain. *

*/ private String certificateChain; /** *

* A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *

*/ private com.amazonaws.internal.SdkInternalList tags; /** * Default constructor for ServerCertificate object. Callers should use the setter or fluent setter (with...) * methods to initialize the object after creating it. */ public ServerCertificate() { } /** * Constructs a new ServerCertificate object. Callers should use the setter or fluent setter (with...) methods to * initialize any additional object members. * * @param serverCertificateMetadata * The meta information of the server certificate, such as its name, path, ID, and ARN. * @param certificateBody * The contents of the public key certificate. */ public ServerCertificate(ServerCertificateMetadata serverCertificateMetadata, String certificateBody) { setServerCertificateMetadata(serverCertificateMetadata); setCertificateBody(certificateBody); } /** *

* The meta information of the server certificate, such as its name, path, ID, and ARN. *

* * @param serverCertificateMetadata * The meta information of the server certificate, such as its name, path, ID, and ARN. */ public void setServerCertificateMetadata(ServerCertificateMetadata serverCertificateMetadata) { this.serverCertificateMetadata = serverCertificateMetadata; } /** *

* The meta information of the server certificate, such as its name, path, ID, and ARN. *

* * @return The meta information of the server certificate, such as its name, path, ID, and ARN. */ public ServerCertificateMetadata getServerCertificateMetadata() { return this.serverCertificateMetadata; } /** *

* The meta information of the server certificate, such as its name, path, ID, and ARN. *

* * @param serverCertificateMetadata * The meta information of the server certificate, such as its name, path, ID, and ARN. * @return Returns a reference to this object so that method calls can be chained together. */ public ServerCertificate withServerCertificateMetadata(ServerCertificateMetadata serverCertificateMetadata) { setServerCertificateMetadata(serverCertificateMetadata); return this; } /** *

* The contents of the public key certificate. *

* * @param certificateBody * The contents of the public key certificate. */ public void setCertificateBody(String certificateBody) { this.certificateBody = certificateBody; } /** *

* The contents of the public key certificate. *

* * @return The contents of the public key certificate. */ public String getCertificateBody() { return this.certificateBody; } /** *

* The contents of the public key certificate. *

* * @param certificateBody * The contents of the public key certificate. * @return Returns a reference to this object so that method calls can be chained together. */ public ServerCertificate withCertificateBody(String certificateBody) { setCertificateBody(certificateBody); return this; } /** *

* The contents of the public key certificate chain. *

* * @param certificateChain * The contents of the public key certificate chain. */ public void setCertificateChain(String certificateChain) { this.certificateChain = certificateChain; } /** *

* The contents of the public key certificate chain. *

* * @return The contents of the public key certificate chain. */ public String getCertificateChain() { return this.certificateChain; } /** *

* The contents of the public key certificate chain. *

* * @param certificateChain * The contents of the public key certificate chain. * @return Returns a reference to this object so that method calls can be chained together. */ public ServerCertificate withCertificateChain(String certificateChain) { setCertificateChain(certificateChain); return this; } /** *

* A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *

* * @return A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the * IAM User Guide. */ public java.util.List getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList(); } return tags; } /** *

* A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *

* * @param tags * A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the * IAM User Guide. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList(tags); } /** *

* A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *

*

* 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 * A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the * IAM User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public ServerCertificate withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the IAM User * Guide. *

* * @param tags * A list of tags that are attached to the server certificate. For more information about tagging, see Tagging IAM resources in the * IAM User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public ServerCertificate 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 (getServerCertificateMetadata() != null) sb.append("ServerCertificateMetadata: ").append(getServerCertificateMetadata()).append(","); if (getCertificateBody() != null) sb.append("CertificateBody: ").append(getCertificateBody()).append(","); if (getCertificateChain() != null) sb.append("CertificateChain: ").append(getCertificateChain()).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 ServerCertificate == false) return false; ServerCertificate other = (ServerCertificate) obj; if (other.getServerCertificateMetadata() == null ^ this.getServerCertificateMetadata() == null) return false; if (other.getServerCertificateMetadata() != null && other.getServerCertificateMetadata().equals(this.getServerCertificateMetadata()) == false) return false; if (other.getCertificateBody() == null ^ this.getCertificateBody() == null) return false; if (other.getCertificateBody() != null && other.getCertificateBody().equals(this.getCertificateBody()) == false) return false; if (other.getCertificateChain() == null ^ this.getCertificateChain() == null) return false; if (other.getCertificateChain() != null && other.getCertificateChain().equals(this.getCertificateChain()) == 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 + ((getServerCertificateMetadata() == null) ? 0 : getServerCertificateMetadata().hashCode()); hashCode = prime * hashCode + ((getCertificateBody() == null) ? 0 : getCertificateBody().hashCode()); hashCode = prime * hashCode + ((getCertificateChain() == null) ? 0 : getCertificateChain().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public ServerCertificate clone() { try { return (ServerCertificate) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }