Class ListMultipartUploadsResult
- java.lang.Object
-
- com.amazonaws.services.glacier.model.ListMultipartUploadsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ListMultipartUploadsResult extends Object implements Serializable, Cloneable
Contains the Amazon Glacier response to your request.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListMultipartUploadsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListMultipartUploadsResultclone()booleanequals(Object obj)StringgetMarker()An opaque string that represents where to continue pagination of the results.List<UploadListElement>getUploadsList()A list of in-progress multipart uploads.inthashCode()voidsetMarker(String marker)An opaque string that represents where to continue pagination of the results.voidsetUploadsList(Collection<UploadListElement> uploadsList)A list of in-progress multipart uploads.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListMultipartUploadsResultwithMarker(String marker)An opaque string that represents where to continue pagination of the results.ListMultipartUploadsResultwithUploadsList(UploadListElement... uploadsList)A list of in-progress multipart uploads.ListMultipartUploadsResultwithUploadsList(Collection<UploadListElement> uploadsList)A list of in-progress multipart uploads.
-
-
-
Method Detail
-
getUploadsList
public List<UploadListElement> getUploadsList()
A list of in-progress multipart uploads.
- Returns:
- A list of in-progress multipart uploads.
-
setUploadsList
public void setUploadsList(Collection<UploadListElement> uploadsList)
A list of in-progress multipart uploads.
- Parameters:
uploadsList- A list of in-progress multipart uploads.
-
withUploadsList
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)orwithUploadsList(java.util.Collection)if you want to override the existing values.- Parameters:
uploadsList- A list of in-progress multipart uploads.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withUploadsList
public ListMultipartUploadsResult withUploadsList(Collection<UploadListElement> uploadsList)
A list of in-progress multipart uploads.
- Parameters:
uploadsList- A list of in-progress multipart uploads.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setMarker
public void setMarker(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.- Parameters:
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 isnull.
-
getMarker
public 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.- Returns:
- 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.
-
withMarker
public ListMultipartUploadsResult withMarker(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.- Parameters:
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 isnull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListMultipartUploadsResult clone()
-
-