
com.amazonaws.services.iot.model.CreateProvisioningClaimResult Maven / Gradle / Ivy
/*
* Copyright 2015-2020 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.iot.model;
import java.io.Serializable;
import javax.annotation.Generated;
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateProvisioningClaimResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The ID of the certificate.
*
*/
private String certificateId;
/**
*
* The provisioning claim certificate.
*
*/
private String certificatePem;
/**
*
* The provisioning claim key pair.
*
*/
private KeyPair keyPair;
/**
*
* The provisioning claim expiration time.
*
*/
private java.util.Date expiration;
/**
*
* The ID of the certificate.
*
*
* @param certificateId
* The ID of the certificate.
*/
public void setCertificateId(String certificateId) {
this.certificateId = certificateId;
}
/**
*
* The ID of the certificate.
*
*
* @return The ID of the certificate.
*/
public String getCertificateId() {
return this.certificateId;
}
/**
*
* The ID of the certificate.
*
*
* @param certificateId
* The ID of the certificate.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateProvisioningClaimResult withCertificateId(String certificateId) {
setCertificateId(certificateId);
return this;
}
/**
*
* The provisioning claim certificate.
*
*
* @param certificatePem
* The provisioning claim certificate.
*/
public void setCertificatePem(String certificatePem) {
this.certificatePem = certificatePem;
}
/**
*
* The provisioning claim certificate.
*
*
* @return The provisioning claim certificate.
*/
public String getCertificatePem() {
return this.certificatePem;
}
/**
*
* The provisioning claim certificate.
*
*
* @param certificatePem
* The provisioning claim certificate.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateProvisioningClaimResult withCertificatePem(String certificatePem) {
setCertificatePem(certificatePem);
return this;
}
/**
*
* The provisioning claim key pair.
*
*
* @param keyPair
* The provisioning claim key pair.
*/
public void setKeyPair(KeyPair keyPair) {
this.keyPair = keyPair;
}
/**
*
* The provisioning claim key pair.
*
*
* @return The provisioning claim key pair.
*/
public KeyPair getKeyPair() {
return this.keyPair;
}
/**
*
* The provisioning claim key pair.
*
*
* @param keyPair
* The provisioning claim key pair.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateProvisioningClaimResult withKeyPair(KeyPair keyPair) {
setKeyPair(keyPair);
return this;
}
/**
*
* The provisioning claim expiration time.
*
*
* @param expiration
* The provisioning claim expiration time.
*/
public void setExpiration(java.util.Date expiration) {
this.expiration = expiration;
}
/**
*
* The provisioning claim expiration time.
*
*
* @return The provisioning claim expiration time.
*/
public java.util.Date getExpiration() {
return this.expiration;
}
/**
*
* The provisioning claim expiration time.
*
*
* @param expiration
* The provisioning claim expiration time.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateProvisioningClaimResult withExpiration(java.util.Date expiration) {
setExpiration(expiration);
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 (getCertificateId() != null)
sb.append("CertificateId: ").append(getCertificateId()).append(",");
if (getCertificatePem() != null)
sb.append("CertificatePem: ").append(getCertificatePem()).append(",");
if (getKeyPair() != null)
sb.append("KeyPair: ").append(getKeyPair()).append(",");
if (getExpiration() != null)
sb.append("Expiration: ").append(getExpiration());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateProvisioningClaimResult == false)
return false;
CreateProvisioningClaimResult other = (CreateProvisioningClaimResult) obj;
if (other.getCertificateId() == null ^ this.getCertificateId() == null)
return false;
if (other.getCertificateId() != null && other.getCertificateId().equals(this.getCertificateId()) == false)
return false;
if (other.getCertificatePem() == null ^ this.getCertificatePem() == null)
return false;
if (other.getCertificatePem() != null && other.getCertificatePem().equals(this.getCertificatePem()) == false)
return false;
if (other.getKeyPair() == null ^ this.getKeyPair() == null)
return false;
if (other.getKeyPair() != null && other.getKeyPair().equals(this.getKeyPair()) == false)
return false;
if (other.getExpiration() == null ^ this.getExpiration() == null)
return false;
if (other.getExpiration() != null && other.getExpiration().equals(this.getExpiration()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getCertificateId() == null) ? 0 : getCertificateId().hashCode());
hashCode = prime * hashCode + ((getCertificatePem() == null) ? 0 : getCertificatePem().hashCode());
hashCode = prime * hashCode + ((getKeyPair() == null) ? 0 : getKeyPair().hashCode());
hashCode = prime * hashCode + ((getExpiration() == null) ? 0 : getExpiration().hashCode());
return hashCode;
}
@Override
public CreateProvisioningClaimResult clone() {
try {
return (CreateProvisioningClaimResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}