public class GetClientCertificateResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents a Client Certificate used to configure client-side SSL authentication while sending requests to the integration endpoint.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
clientCertificateId
The identifier of the Client Certificate.
|
private java.util.Date |
createdDate
The date when the Client Certificate was created, in ISO 8601 format.
|
private java.lang.String |
description
The description of the Client Certificate.
|
private java.util.Date |
expirationDate
The date when the Client Certificate will expire, in ISO 8601 format.
|
private java.lang.String |
pemEncodedCertificate
The PEM-encoded public key of the Client Certificate, that can be used to
configure certificate authentication in the integration endpoint .
|
Constructor and Description |
---|
GetClientCertificateResult() |
Modifier and Type | Method and Description |
---|---|
GetClientCertificateResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getClientCertificateId()
The identifier of the Client Certificate.
|
java.util.Date |
getCreatedDate()
The date when the Client Certificate was created, in ISO 8601 format.
|
java.lang.String |
getDescription()
The description of the Client Certificate.
|
java.util.Date |
getExpirationDate()
The date when the Client Certificate will expire, in ISO 8601 format.
|
java.lang.String |
getPemEncodedCertificate()
The PEM-encoded public key of the Client Certificate, that can be used to
configure certificate authentication in the integration endpoint .
|
int |
hashCode() |
void |
setClientCertificateId(java.lang.String clientCertificateId)
The identifier of the Client Certificate.
|
void |
setCreatedDate(java.util.Date createdDate)
The date when the Client Certificate was created, in ISO 8601 format.
|
void |
setDescription(java.lang.String description)
The description of the Client Certificate.
|
void |
setExpirationDate(java.util.Date expirationDate)
The date when the Client Certificate will expire, in ISO 8601 format.
|
void |
setPemEncodedCertificate(java.lang.String pemEncodedCertificate)
The PEM-encoded public key of the Client Certificate, that can be used to
configure certificate authentication in the integration endpoint .
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
GetClientCertificateResult |
withClientCertificateId(java.lang.String clientCertificateId)
The identifier of the Client Certificate.
|
GetClientCertificateResult |
withCreatedDate(java.util.Date createdDate)
The date when the Client Certificate was created, in ISO 8601 format.
|
GetClientCertificateResult |
withDescription(java.lang.String description)
The description of the Client Certificate.
|
GetClientCertificateResult |
withExpirationDate(java.util.Date expirationDate)
The date when the Client Certificate will expire, in ISO 8601 format.
|
GetClientCertificateResult |
withPemEncodedCertificate(java.lang.String pemEncodedCertificate)
The PEM-encoded public key of the Client Certificate, that can be used to
configure certificate authentication in the integration endpoint .
|
private java.lang.String clientCertificateId
The identifier of the Client Certificate.
private java.lang.String description
The description of the Client Certificate.
private java.lang.String pemEncodedCertificate
The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .
private java.util.Date createdDate
The date when the Client Certificate was created, in ISO 8601 format.
private java.util.Date expirationDate
The date when the Client Certificate will expire, in ISO 8601 format.
public void setClientCertificateId(java.lang.String clientCertificateId)
The identifier of the Client Certificate.
clientCertificateId
- The identifier of the Client Certificate.public java.lang.String getClientCertificateId()
The identifier of the Client Certificate.
public GetClientCertificateResult withClientCertificateId(java.lang.String clientCertificateId)
The identifier of the Client Certificate.
clientCertificateId
- The identifier of the Client Certificate.public void setDescription(java.lang.String description)
The description of the Client Certificate.
description
- The description of the Client Certificate.public java.lang.String getDescription()
The description of the Client Certificate.
public GetClientCertificateResult withDescription(java.lang.String description)
The description of the Client Certificate.
description
- The description of the Client Certificate.public void setPemEncodedCertificate(java.lang.String pemEncodedCertificate)
The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .
pemEncodedCertificate
- The PEM-encoded public key of the Client Certificate, that can be
used to configure certificate authentication in the integration
endpoint .public java.lang.String getPemEncodedCertificate()
The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .
public GetClientCertificateResult withPemEncodedCertificate(java.lang.String pemEncodedCertificate)
The PEM-encoded public key of the Client Certificate, that can be used to configure certificate authentication in the integration endpoint .
pemEncodedCertificate
- The PEM-encoded public key of the Client Certificate, that can be
used to configure certificate authentication in the integration
endpoint .public void setCreatedDate(java.util.Date createdDate)
The date when the Client Certificate was created, in ISO 8601 format.
createdDate
- The date when the Client Certificate was created, in ISO 8601 format.public java.util.Date getCreatedDate()
The date when the Client Certificate was created, in ISO 8601 format.
public GetClientCertificateResult withCreatedDate(java.util.Date createdDate)
The date when the Client Certificate was created, in ISO 8601 format.
createdDate
- The date when the Client Certificate was created, in ISO 8601 format.public void setExpirationDate(java.util.Date expirationDate)
The date when the Client Certificate will expire, in ISO 8601 format.
expirationDate
- The date when the Client Certificate will expire, in ISO 8601 format.public java.util.Date getExpirationDate()
The date when the Client Certificate will expire, in ISO 8601 format.
public GetClientCertificateResult withExpirationDate(java.util.Date expirationDate)
The date when the Client Certificate will expire, in ISO 8601 format.
expirationDate
- The date when the Client Certificate will expire, in ISO 8601 format.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public GetClientCertificateResult clone()
clone
in class java.lang.Object