public class ListCertificatesResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
The output of the ListCertificates operation.
Modifier and Type | Field and Description |
---|---|
private java.util.List<Certificate> |
certificates
The descriptions of the certificates.
|
private java.lang.String |
nextMarker
The marker for the next set of results, or null if there are no
additional results.
|
Constructor and Description |
---|
ListCertificatesResult() |
Modifier and Type | Method and Description |
---|---|
ListCertificatesResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.List<Certificate> |
getCertificates()
The descriptions of the certificates.
|
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 descriptions of the certificates.
|
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.
|
ListCertificatesResult |
withCertificates(Certificate... certificates)
The descriptions of the certificates.
|
ListCertificatesResult |
withCertificates(java.util.Collection<Certificate> certificates)
The descriptions of the certificates.
|
ListCertificatesResult |
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 descriptions of the certificates.
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 descriptions of the certificates.
public void setCertificates(java.util.Collection<Certificate> certificates)
The descriptions of the certificates.
certificates
- The descriptions of the certificates.public ListCertificatesResult withCertificates(Certificate... certificates)
The descriptions of the certificates.
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 descriptions of the certificates.public ListCertificatesResult withCertificates(java.util.Collection<Certificate> certificates)
The descriptions of the certificates.
certificates
- The descriptions of the certificates.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 ListCertificatesResult 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 ListCertificatesResult clone()
clone
in class java.lang.Object