com.amazonaws.services.rds.model.Certificate Maven / Gradle / Ivy
Show all versions of aws-java-sdk-rds Show documentation
/*
* Copyright 2012-2017 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.rds.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* A CA certificate for an AWS account.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class Certificate implements Serializable, Cloneable {
/**
*
* The unique key that identifies a certificate.
*
*/
private String certificateIdentifier;
/**
*
* The type of the certificate.
*
*/
private String certificateType;
/**
*
* The thumbprint of the certificate.
*
*/
private String thumbprint;
/**
*
* The starting date from which the certificate is valid.
*
*/
private java.util.Date validFrom;
/**
*
* The final date that the certificate continues to be valid.
*
*/
private java.util.Date validTill;
/**
*
* The Amazon Resource Name (ARN) for the certificate.
*
*/
private String certificateArn;
/**
*
* The unique key that identifies a certificate.
*
*
* @param certificateIdentifier
* The unique key that identifies a certificate.
*/
public void setCertificateIdentifier(String certificateIdentifier) {
this.certificateIdentifier = certificateIdentifier;
}
/**
*
* The unique key that identifies a certificate.
*
*
* @return The unique key that identifies a certificate.
*/
public String getCertificateIdentifier() {
return this.certificateIdentifier;
}
/**
*
* The unique key that identifies a certificate.
*
*
* @param certificateIdentifier
* The unique key that identifies a certificate.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Certificate withCertificateIdentifier(String certificateIdentifier) {
setCertificateIdentifier(certificateIdentifier);
return this;
}
/**
*
* The type of the certificate.
*
*
* @param certificateType
* The type of the certificate.
*/
public void setCertificateType(String certificateType) {
this.certificateType = certificateType;
}
/**
*
* The type of the certificate.
*
*
* @return The type of the certificate.
*/
public String getCertificateType() {
return this.certificateType;
}
/**
*
* The type of the certificate.
*
*
* @param certificateType
* The type of the certificate.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Certificate withCertificateType(String certificateType) {
setCertificateType(certificateType);
return this;
}
/**
*
* The thumbprint of the certificate.
*
*
* @param thumbprint
* The thumbprint of the certificate.
*/
public void setThumbprint(String thumbprint) {
this.thumbprint = thumbprint;
}
/**
*
* The thumbprint of the certificate.
*
*
* @return The thumbprint of the certificate.
*/
public String getThumbprint() {
return this.thumbprint;
}
/**
*
* The thumbprint of the certificate.
*
*
* @param thumbprint
* The thumbprint of the certificate.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Certificate withThumbprint(String thumbprint) {
setThumbprint(thumbprint);
return this;
}
/**
*
* The starting date from which the certificate is valid.
*
*
* @param validFrom
* The starting date from which the certificate is valid.
*/
public void setValidFrom(java.util.Date validFrom) {
this.validFrom = validFrom;
}
/**
*
* The starting date from which the certificate is valid.
*
*
* @return The starting date from which the certificate is valid.
*/
public java.util.Date getValidFrom() {
return this.validFrom;
}
/**
*
* The starting date from which the certificate is valid.
*
*
* @param validFrom
* The starting date from which the certificate is valid.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Certificate withValidFrom(java.util.Date validFrom) {
setValidFrom(validFrom);
return this;
}
/**
*
* The final date that the certificate continues to be valid.
*
*
* @param validTill
* The final date that the certificate continues to be valid.
*/
public void setValidTill(java.util.Date validTill) {
this.validTill = validTill;
}
/**
*
* The final date that the certificate continues to be valid.
*
*
* @return The final date that the certificate continues to be valid.
*/
public java.util.Date getValidTill() {
return this.validTill;
}
/**
*
* The final date that the certificate continues to be valid.
*
*
* @param validTill
* The final date that the certificate continues to be valid.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Certificate withValidTill(java.util.Date validTill) {
setValidTill(validTill);
return this;
}
/**
*
* The Amazon Resource Name (ARN) for the certificate.
*
*
* @param certificateArn
* The Amazon Resource Name (ARN) for the certificate.
*/
public void setCertificateArn(String certificateArn) {
this.certificateArn = certificateArn;
}
/**
*
* The Amazon Resource Name (ARN) for the certificate.
*
*
* @return The Amazon Resource Name (ARN) for the certificate.
*/
public String getCertificateArn() {
return this.certificateArn;
}
/**
*
* The Amazon Resource Name (ARN) for the certificate.
*
*
* @param certificateArn
* The Amazon Resource Name (ARN) for the certificate.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Certificate withCertificateArn(String certificateArn) {
setCertificateArn(certificateArn);
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getCertificateIdentifier() != null)
sb.append("CertificateIdentifier: ").append(getCertificateIdentifier()).append(",");
if (getCertificateType() != null)
sb.append("CertificateType: ").append(getCertificateType()).append(",");
if (getThumbprint() != null)
sb.append("Thumbprint: ").append(getThumbprint()).append(",");
if (getValidFrom() != null)
sb.append("ValidFrom: ").append(getValidFrom()).append(",");
if (getValidTill() != null)
sb.append("ValidTill: ").append(getValidTill()).append(",");
if (getCertificateArn() != null)
sb.append("CertificateArn: ").append(getCertificateArn());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof Certificate == false)
return false;
Certificate other = (Certificate) obj;
if (other.getCertificateIdentifier() == null ^ this.getCertificateIdentifier() == null)
return false;
if (other.getCertificateIdentifier() != null && other.getCertificateIdentifier().equals(this.getCertificateIdentifier()) == false)
return false;
if (other.getCertificateType() == null ^ this.getCertificateType() == null)
return false;
if (other.getCertificateType() != null && other.getCertificateType().equals(this.getCertificateType()) == false)
return false;
if (other.getThumbprint() == null ^ this.getThumbprint() == null)
return false;
if (other.getThumbprint() != null && other.getThumbprint().equals(this.getThumbprint()) == false)
return false;
if (other.getValidFrom() == null ^ this.getValidFrom() == null)
return false;
if (other.getValidFrom() != null && other.getValidFrom().equals(this.getValidFrom()) == false)
return false;
if (other.getValidTill() == null ^ this.getValidTill() == null)
return false;
if (other.getValidTill() != null && other.getValidTill().equals(this.getValidTill()) == false)
return false;
if (other.getCertificateArn() == null ^ this.getCertificateArn() == null)
return false;
if (other.getCertificateArn() != null && other.getCertificateArn().equals(this.getCertificateArn()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getCertificateIdentifier() == null) ? 0 : getCertificateIdentifier().hashCode());
hashCode = prime * hashCode + ((getCertificateType() == null) ? 0 : getCertificateType().hashCode());
hashCode = prime * hashCode + ((getThumbprint() == null) ? 0 : getThumbprint().hashCode());
hashCode = prime * hashCode + ((getValidFrom() == null) ? 0 : getValidFrom().hashCode());
hashCode = prime * hashCode + ((getValidTill() == null) ? 0 : getValidTill().hashCode());
hashCode = prime * hashCode + ((getCertificateArn() == null) ? 0 : getCertificateArn().hashCode());
return hashCode;
}
@Override
public Certificate clone() {
try {
return (Certificate) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}