public class ListMultipartUploadsResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Contains the Amazon Glacier response to your request.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
marker
An opaque string that represents where to continue pagination of the
results.
|
private java.util.List<UploadListElement> |
uploadsList
A list of in-progress multipart uploads.
|
Constructor and Description |
---|
ListMultipartUploadsResult() |
Modifier and Type | Method and Description |
---|---|
ListMultipartUploadsResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getMarker()
An opaque string that represents where to continue pagination of the
results.
|
java.util.List<UploadListElement> |
getUploadsList()
A list of in-progress multipart uploads.
|
int |
hashCode() |
void |
setMarker(java.lang.String marker)
An opaque string that represents where to continue pagination of the
results.
|
void |
setUploadsList(java.util.Collection<UploadListElement> uploadsList)
A list of in-progress multipart uploads.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListMultipartUploadsResult |
withMarker(java.lang.String marker)
An opaque string that represents where to continue pagination of the
results.
|
ListMultipartUploadsResult |
withUploadsList(java.util.Collection<UploadListElement> uploadsList)
A list of in-progress multipart uploads.
|
ListMultipartUploadsResult |
withUploadsList(UploadListElement... uploadsList)
A list of in-progress multipart uploads.
|
private java.util.List<UploadListElement> uploadsList
A list of in-progress multipart uploads.
private java.lang.String marker
An opaque string that represents where to continue pagination of the
results. You use the marker in a new List Multipart Uploads request to
obtain more uploads in the list. If there are no more uploads, this value
is null
.
public java.util.List<UploadListElement> getUploadsList()
A list of in-progress multipart uploads.
public void setUploadsList(java.util.Collection<UploadListElement> uploadsList)
A list of in-progress multipart uploads.
uploadsList
- A list of in-progress multipart uploads.public ListMultipartUploadsResult withUploadsList(UploadListElement... uploadsList)
A list of in-progress multipart uploads.
NOTE: This method appends the values to the existing list (if
any). Use setUploadsList(java.util.Collection)
or
withUploadsList(java.util.Collection)
if you want to override
the existing values.
uploadsList
- A list of in-progress multipart uploads.public ListMultipartUploadsResult withUploadsList(java.util.Collection<UploadListElement> uploadsList)
A list of in-progress multipart uploads.
uploadsList
- A list of in-progress multipart uploads.public void setMarker(java.lang.String marker)
An opaque string that represents where to continue pagination of the
results. You use the marker in a new List Multipart Uploads request to
obtain more uploads in the list. If there are no more uploads, this value
is null
.
marker
- An opaque string that represents where to continue pagination of
the results. You use the marker in a new List Multipart Uploads
request to obtain more uploads in the list. If there are no more
uploads, this value is null
.public java.lang.String getMarker()
An opaque string that represents where to continue pagination of the
results. You use the marker in a new List Multipart Uploads request to
obtain more uploads in the list. If there are no more uploads, this value
is null
.
null
.public ListMultipartUploadsResult withMarker(java.lang.String marker)
An opaque string that represents where to continue pagination of the
results. You use the marker in a new List Multipart Uploads request to
obtain more uploads in the list. If there are no more uploads, this value
is null
.
marker
- An opaque string that represents where to continue pagination of
the results. You use the marker in a new List Multipart Uploads
request to obtain more uploads in the list. If there are no more
uploads, this value is null
.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 ListMultipartUploadsResult clone()
clone
in class java.lang.Object