public class ListCertificatesByCAResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
The output of the ListCertificatesByCA operation.
Modifier and Type | Field and Description |
---|---|
private java.util.List<Certificate> |
certificates
The device certificates signed by the specified CA certificate.
|
private java.lang.String |
nextMarker
The marker for the next set of results, or null if there are no
additional results.
|
Constructor and Description |
---|
ListCertificatesByCAResult() |
Modifier and Type | Method and Description |
---|---|
ListCertificatesByCAResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.List<Certificate> |
getCertificates()
The device certificates signed by the specified CA certificate.
|
java.lang.String |
getNextMarker()
The marker for the next set of results, or null if there are no
additional results.
|
int |
hashCode() |
void |
setCertificates(java.util.Collection<Certificate> certificates)
The device certificates signed by the specified CA certificate.
|
void |
setNextMarker(java.lang.String nextMarker)
The marker for the next set of results, or null if there are no
additional results.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListCertificatesByCAResult |
withCertificates(Certificate... certificates)
The device certificates signed by the specified CA certificate.
|
ListCertificatesByCAResult |
withCertificates(java.util.Collection<Certificate> certificates)
The device certificates signed by the specified CA certificate.
|
ListCertificatesByCAResult |
withNextMarker(java.lang.String nextMarker)
The marker for the next set of results, or null if there are no
additional results.
|
private java.util.List<Certificate> certificates
The device certificates signed by the specified CA certificate.
private java.lang.String nextMarker
The marker for the next set of results, or null if there are no additional results.
public java.util.List<Certificate> getCertificates()
The device certificates signed by the specified CA certificate.
public void setCertificates(java.util.Collection<Certificate> certificates)
The device certificates signed by the specified CA certificate.
certificates
- The device certificates signed by the specified CA certificate.public ListCertificatesByCAResult withCertificates(Certificate... certificates)
The device certificates signed by the specified CA certificate.
NOTE: This method appends the values to the existing list (if
any). Use setCertificates(java.util.Collection)
or
withCertificates(java.util.Collection)
if you want to override
the existing values.
certificates
- The device certificates signed by the specified CA certificate.public ListCertificatesByCAResult withCertificates(java.util.Collection<Certificate> certificates)
The device certificates signed by the specified CA certificate.
certificates
- The device certificates signed by the specified CA certificate.public void setNextMarker(java.lang.String nextMarker)
The marker for the next set of results, or null if there are no additional results.
nextMarker
- The marker for the next set of results, or null if there are no
additional results.public java.lang.String getNextMarker()
The marker for the next set of results, or null if there are no additional results.
public ListCertificatesByCAResult withNextMarker(java.lang.String nextMarker)
The marker for the next set of results, or null if there are no additional results.
nextMarker
- The marker for the next set of results, or null if there are no
additional results.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 ListCertificatesByCAResult clone()
clone
in class java.lang.Object