com.amazonaws.services.s3.model
Class MultipartUploadListing

java.lang.Object
  extended by com.amazonaws.services.s3.model.MultipartUploadListing

public class MultipartUploadListing
extends Object

The ListMultipartUploadsResponse contains all the information about the ListMultipartUploads method.


Constructor Summary
MultipartUploadListing()
           
 
Method Summary
 String getBucketName()
          Returns the name of the bucket containing the listed multipart uploads, as specified in the original request.
 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 getUploadIdMarker()
          Returns the optional upload ID marker specified in the original request to specify where in the results to begin listing multipart uploads.
 boolean isTruncated()
          Returns true if the listing is truncated, and additional requests need to be made to get more results.
 void setBucketName(String bucketName)
          Sets the name of the bucket containing the listed multipart uploads, as specified in the original request.
 void setKeyMarker(String keyMarker)
          Sets the optional key marker specified in the original request to specify where in the results to begin listing multipart uploads.
 void setMaxUploads(int maxUploads)
          Sets the optional maximum number of uploads to be listed, as specified in the original request.
 void setMultipartUploads(List<MultipartUpload> multipartUploads)
          Sets the list of multipart uploads.
 void setNextKeyMarker(String nextKeyMarker)
          Sets the next key marker that should be used in the next request to get the next page of results.
 void setNextUploadIdMarker(String nextUploadIdMarker)
          Sets the next upload ID marker that should be used in the next request to get the next page of results.
 void setTruncated(boolean isTruncated)
          Sets whether this listing is truncated, and additional requests need to be made to get more results.
 void setUploadIdMarker(String uploadIdMarker)
          Sets the optional upload ID marker specified in the original request to specify where in the results to begin listing multipart uploads.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MultipartUploadListing

public MultipartUploadListing()
Method Detail

getBucketName

public String getBucketName()
Returns the name of the bucket containing the listed multipart uploads, as specified in the original request.

Returns:
The name of the bucket containing the listed multipart uploads, as specified in the original request.

setBucketName

public void setBucketName(String bucketName)
Sets the name of the bucket containing the listed multipart uploads, as specified in the original request.

Parameters:
bucketName - The name of the bucket containing the listed multipart uploads, as specified in the original request.

getKeyMarker

public String getKeyMarker()
Returns the optional key marker specified in the original request to specify where in the results to begin listing multipart uploads.

Returns:
The optional key marker specified in the original request to specify where in the results to begin listing multipart uploads.

setKeyMarker

public void setKeyMarker(String keyMarker)
Sets the optional key marker specified in the original request to specify where in the results to begin listing multipart uploads.

Parameters:
keyMarker - The optional key marker specified in the original request to specify where in the results to begin listing multipart uploads.

getUploadIdMarker

public String getUploadIdMarker()
Returns the optional upload ID marker specified in the original request to specify where in the results to begin listing multipart uploads.

Returns:
The optional upload ID marker specified in the original request to specify where in the results to begin listing multipart uploads.

setUploadIdMarker

public void setUploadIdMarker(String uploadIdMarker)
Sets the optional upload ID marker specified in the original request to specify where in the results to begin listing multipart uploads.

Parameters:
uploadIdMarker - The optional upload ID marker specified in the original request to specify where in the results to begin listing multipart uploads.

getNextKeyMarker

public String getNextKeyMarker()
Returns the next key marker that should be used in the next request to get the next page of results. This value is only valid if isTruncated() indicates this listing is truncated.

Returns:
the next key marker that should be used in the next request to get the next page of results. This value is only valid if isTruncated() indicates this listing is truncated.

setNextKeyMarker

public void setNextKeyMarker(String nextKeyMarker)
Sets the next key marker that should be used in the next request to get the next page of results.

Parameters:
nextKeyMarker - the next key marker that should be used in the next request to get the next page of results.

getNextUploadIdMarker

public String getNextUploadIdMarker()
Returns the next upload ID marker that should be used in the next request to get the next page of results. This value is only valid if isTruncated() indicates this listing is truncated.

Returns:
the next upload ID marker that should be used in the next request to get the next page of results.

setNextUploadIdMarker

public void setNextUploadIdMarker(String nextUploadIdMarker)
Sets the next upload ID marker that should be used in the next request to get the next page of results.

Parameters:
nextUploadIdMarker - The next upload ID marker that should be used in the next request to get the next page of results.

getMaxUploads

public int getMaxUploads()
Returns the optional maximum number of uploads to be listed, as specified in the original request.

Returns:
The optional maximum number of uploads to be listed, as specified in the original request.

setMaxUploads

public void setMaxUploads(int maxUploads)
Sets the optional maximum number of uploads to be listed, as specified in the original request.

Parameters:
maxUploads - The optional maximum number of uploads to be listed, as specified in the original request.

isTruncated

public boolean isTruncated()
Returns true if the listing is truncated, and additional requests need to be made to get more results.

Returns:
true if the listing is truncated, and additional requests need to be made to get more results.

setTruncated

public void setTruncated(boolean isTruncated)
Sets whether this listing is truncated, and additional requests need to be made to get more results.

Parameters:
isTruncated - true if the listing is truncated, and additional requests need to be made to get more results.

getMultipartUploads

public List<MultipartUpload> getMultipartUploads()
Returns the list of multipart uploads.

Returns:
The list of multipart uploads.

setMultipartUploads

public void setMultipartUploads(List<MultipartUpload> multipartUploads)
Sets the list of multipart uploads.

Parameters:
multipartUploads - The list of multipart uploads.


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.