public class MultipartUploadListing extends Object implements Serializable
| Constructor and Description |
|---|
MultipartUploadListing() |
MultipartUploadListing(String bucketName,
String keyMarker,
String delimiter,
String prefix,
String uploadIdMarker,
int maxUploads,
String encodingType,
boolean truncated,
String nextKeyMarker,
String nextUploadIdMarker,
List<MultipartUpload> multipartUploads,
List<String> commonPrefixes) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object o) |
String |
getBucketName()
Returns the name of the bucket containing the listed multipart uploads, as specified in the original request.
|
List<String> |
getCommonPrefixes()
Returns the common prefixes included in this multipart upload listing.
|
String |
getDelimiter()
Gets the delimiter parameter originally used to request this multipart upload listing, or
null if no delimiter specified. |
String |
getEncodingType()
Gets the encoding type used by Amazon S3 to encode object key names in the XML response.
|
String |
getKeyMarker()
Returns the optional key marker specified in the original request to specify where in the results to begin listing multipart uploads.
|
int |
getMaxUploads()
Returns the optional maximum number of uploads to be listed, as specified in the original request.
|
List<MultipartUpload> |
getMultipartUploads()
Returns the list of multipart uploads.
|
String |
getNextKeyMarker()
Returns the next key marker that should be used in the next request to get the next page of results.
|
String |
getNextUploadIdMarker()
Returns the next upload ID marker that should be used in the next request to get the next page of results.
|
String |
getPrefix()
Returns the prefix parameter originally used to request this multipart upload listing, or
null if no prefix was specified. |
String |
getUploadIdMarker()
Returns the optional upload ID marker specified in the original request to specify where in the results to begin listing multipart uploads.
|
int |
hashCode() |
boolean |
isTruncated()
Returns true if the listing is truncated, and additional requests need to be made to get more results.
|
public MultipartUploadListing(String bucketName, String keyMarker, String delimiter, String prefix, String uploadIdMarker, int maxUploads, String encodingType, boolean truncated, String nextKeyMarker, String nextUploadIdMarker, List<MultipartUpload> multipartUploads, List<String> commonPrefixes)
public MultipartUploadListing()
public String getBucketName()
public String getKeyMarker()
public String getUploadIdMarker()
public String getNextKeyMarker()
isTruncated() indicates this
listing is truncated.isTruncated() indicates this
listing is truncated.public String getNextUploadIdMarker()
isTruncated() indicates this
listing is truncated.public int getMaxUploads()
public String getEncodingType()
encodingType request parameter, Amazon S3 includes this
element in the response, and returns encoded key name values in the following response elements: Delimiter, KeyMarker, Prefix, NextKeyMarker, Key.Null if encodingType is not specified in the request parameter.public boolean isTruncated()
public List<MultipartUpload> getMultipartUploads()
public List<String> getCommonPrefixes()
Returns the common prefixes included in this multipart upload listing. Common prefixes are only present if a delimiter was specified in the original request.
Each common prefix represents a set of keys in the S3 bucket that have been condensed and omitted from the multipart upload listing results. This allows applications to organize and browse their multipart uploads hierarchically, similar to how a file system organizes files into directories.
For example, consider a bucket that contains the following keys currently involved in multipart uploads:listMultipartUploads with the prefix="foo/" and the delimiter="/" on this bucket, the returned MultipartUploadListing will contain one
entry in the common prefixes list ("foo/bar/") and none of the uploads for the keys beginning with that common prefix will be included in the multipart upload list.public String getDelimiter()
null if no delimiter specified.
The delimiter value allows callers to condense multipart uploads for keys with common prefixes. For example, if a caller specifies a delimiter of "/" (a commonly used value for delimiter), any multipart uploads for keys that contain a common prefix between the start of the key and the first occurrence of "/" will not be included in the list of multipart uploads. Instead, the common prefixes list will have one entry for the common prefix.
null if no delimiter was specified.public String getPrefix()
null if no prefix was specified. All objects and common prefixes
included in this multipart upload listing start with the specified prefix.null if no prefix was specified.Copyright © 2021 MuleSoft, Inc.. All rights reserved.