Package com.amazonaws.services.s3.model
Class ListNextBatchOfObjectsRequest
- java.lang.Object
-
- com.amazonaws.AmazonWebServiceRequest
-
- com.amazonaws.services.s3.model.ListNextBatchOfObjectsRequest
-
- All Implemented Interfaces:
ReadLimitInfo
,Serializable
,Cloneable
public class ListNextBatchOfObjectsRequest extends AmazonWebServiceRequest implements Serializable
Request object for parameters of listing next batch of objects.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.amazonaws.AmazonWebServiceRequest
NOOP
-
-
Constructor Summary
Constructors Constructor Description ListNextBatchOfObjectsRequest(ObjectListing previousObjectListing)
Creates a request object for listing next batch of objects.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectListing
getPreviousObjectListing()
Returns the previous object listing.void
setPreviousObjectListing(ObjectListing previousObjectListing)
Sets the previous object listing and all the features of the next object listing as well.ListObjectsRequest
toListObjectsRequest()
Creates a newListObjectsRequest
object using the previous object listing.ListNextBatchOfObjectsRequest
withPreviousObjectListing(ObjectListing previousObjectListing)
Sets the previous object listing and returns the updated request object so that additional method calls can be chained together.-
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
clone, copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
-
-
-
-
Constructor Detail
-
ListNextBatchOfObjectsRequest
public ListNextBatchOfObjectsRequest(ObjectListing previousObjectListing)
Creates a request object for listing next batch of objects.- Parameters:
previousObjectListing
- The previous object listing whose features are to be fetched.
-
-
Method Detail
-
getPreviousObjectListing
public ObjectListing getPreviousObjectListing()
Returns the previous object listing.- Returns:
- The previous object listing.
-
setPreviousObjectListing
public void setPreviousObjectListing(ObjectListing previousObjectListing)
Sets the previous object listing and all the features of the next object listing as well.- Parameters:
previousObjectListing
- This parameter must be specified.
-
withPreviousObjectListing
public ListNextBatchOfObjectsRequest withPreviousObjectListing(ObjectListing previousObjectListing)
Sets the previous object listing and returns the updated request object so that additional method calls can be chained together.- Parameters:
previousObjectListing
- The previous object listing whose features are to be fetched.- Returns:
- The updated request object so that additional method calls can be chained together.
-
toListObjectsRequest
public ListObjectsRequest toListObjectsRequest()
Creates a newListObjectsRequest
object using the previous object listing.- Returns:
- A new
ListObjectsRequest
object using the previous object listing.
-
-