Uses of Class
org.jclouds.blobstore.options.ListContainerOptions

Packages that use ListContainerOptions
org.jclouds.blobstore   
org.jclouds.blobstore.internal   
org.jclouds.blobstore.options   
org.jclouds.blobstore.strategy   
org.jclouds.blobstore.strategy.internal   
org.jclouds.blobstore.util   
org.jclouds.blobstore.util.internal   
 

Uses of ListContainerOptions in org.jclouds.blobstore
 

Methods in org.jclouds.blobstore with parameters of type ListContainerOptions
 void TransientStorageStrategy.clearContainer(String containerName, ListContainerOptions options)
           
 void LocalStorageStrategy.clearContainer(String container, ListContainerOptions options)
          Like LocalStorageStrategy.clearContainer(String) except you can use options to do things like recursive deletes, or clear at a different path than root.
 void BlobStore.clearContainer(String container, ListContainerOptions options)
          Like BlobStore.clearContainer(String) except you can use options to do things like recursive deletes, or clear at a different path than root.
 com.google.common.util.concurrent.ListenableFuture<Void> AsyncBlobStore.clearContainer(String container, ListContainerOptions options)
          Deprecated.  
 long BlobStore.countBlobs(String container, ListContainerOptions options)
           
 com.google.common.util.concurrent.ListenableFuture<Long> AsyncBlobStore.countBlobs(String container, ListContainerOptions options)
          Deprecated.  
 com.google.common.util.concurrent.ListenableFuture<PageSet<? extends StorageMetadata>> LocalAsyncBlobStore.list(String container, ListContainerOptions options)
          Deprecated. default maxResults is 1000
 PageSet<? extends StorageMetadata> BlobStore.list(String container, ListContainerOptions options)
          Like BlobStore.list(String) except you can control the size, recursion, and context of the list using options
 com.google.common.util.concurrent.ListenableFuture<PageSet<? extends StorageMetadata>> AsyncBlobStore.list(String container, ListContainerOptions options)
          Deprecated.  
static Iterable<StorageMetadata> BlobStores.listAll(BlobStore blobStore, String container, ListContainerOptions containerOptions)
           
static Iterable<StorageMetadata> BlobStores.listAll(BlobStore blobStore, String container, ListContainerOptions containerOptions, ListAllOptions listAllOptions)
          A variant of BlobStore.list(String, ListContainerOptions) that produces an Iterable over the entire set of results, not just one page, making multiple calls to BlobStore.list as needed.
 

Uses of ListContainerOptions in org.jclouds.blobstore.internal
 

Methods in org.jclouds.blobstore.internal with parameters of type ListContainerOptions
 void BaseBlobStore.clearContainer(String containerName, ListContainerOptions options)
          This implementation invokes BlobUtilsImpl#clearContainer
 com.google.common.util.concurrent.ListenableFuture<Void> BaseAsyncBlobStore.clearContainer(String containerName, ListContainerOptions options)
          Deprecated. This implementation invokes BlobUtilsImpl#clearContainer
 long BaseBlobStore.countBlobs(String containerName, ListContainerOptions options)
          This implementation invokes BlobUtilsImpl#countBlobs
 com.google.common.util.concurrent.ListenableFuture<Long> BaseAsyncBlobStore.countBlobs(String containerName, ListContainerOptions options)
          Deprecated. This implementation invokes BlobUtilsImpl#countBlobs
 

Uses of ListContainerOptions in org.jclouds.blobstore.options
 

Subclasses of ListContainerOptions in org.jclouds.blobstore.options
static class ListContainerOptions.ImmutableListContainerOptions
           
 

Methods in org.jclouds.blobstore.options that return ListContainerOptions
 ListContainerOptions ListOptions.ImmutableListOptions.afterMarker(String marker)
           
 ListContainerOptions ListContainerOptions.afterMarker(String marker)
          Place to continue a listing at.
 ListContainerOptions ListContainerOptions.ImmutableListContainerOptions.afterMarker(String marker)
           
static ListContainerOptions ListContainerOptions.Builder.afterMarker(String marker)
           
 ListContainerOptions ListContainerOptions.clone()
           
 ListContainerOptions ListContainerOptions.ImmutableListContainerOptions.clone()
           
 ListContainerOptions ListContainerOptions.inDirectory(String dir)
          This will list the contents of a virtual or real directory path.
 ListContainerOptions ListContainerOptions.ImmutableListContainerOptions.inDirectory(String dir)
           
static ListContainerOptions ListContainerOptions.Builder.inDirectory(String directory)
           
 ListContainerOptions ListOptions.ImmutableListOptions.maxResults(int maxKeys)
           
 ListContainerOptions ListContainerOptions.maxResults(int maxKeys)
          The maximum number of values you'd like to see in the response body.
 ListContainerOptions ListContainerOptions.ImmutableListContainerOptions.maxResults(int maxKeys)
           
static ListContainerOptions ListContainerOptions.Builder.maxResults(int maxKeys)
           
 ListContainerOptions ListContainerOptions.recursive()
          return a listing of all objects inside the store, recursively.
 ListContainerOptions ListContainerOptions.ImmutableListContainerOptions.recursive()
           
static ListContainerOptions ListContainerOptions.Builder.recursive()
           
 ListContainerOptions ListContainerOptions.withDetails()
          populate each result with detailed such as metadata even if it incurs extra requests to the service.
static ListContainerOptions ListContainerOptions.Builder.withDetails()
           
 

Constructors in org.jclouds.blobstore.options with parameters of type ListContainerOptions
ListContainerOptions.ImmutableListContainerOptions(ListContainerOptions delegate)
           
 

Uses of ListContainerOptions in org.jclouds.blobstore.strategy
 

Methods in org.jclouds.blobstore.strategy with parameters of type ListContainerOptions
 Iterable<? extends StorageMetadata> ListContainerStrategy.execute(String containerName, ListContainerOptions options)
           
 Set<? extends BlobMetadata> ListBlobsInContainer.execute(String containerName, ListContainerOptions options)
           
 Iterable<Blob> GetBlobsInListStrategy.execute(String containerName, ListContainerOptions options)
           
 long CountListStrategy.execute(String containerName, ListContainerOptions options)
           
 void ClearListStrategy.execute(String containerName, ListContainerOptions options)
           
 

Uses of ListContainerOptions in org.jclouds.blobstore.strategy.internal
 

Methods in org.jclouds.blobstore.strategy.internal with parameters of type ListContainerOptions
 Set<? extends BlobMetadata> ListContainerAndRecurseThroughFolders.execute(String containerName, ListContainerOptions options)
           
 Iterable<Blob> GetAllBlobsInListAndRetryOnFailure.execute(String container, ListContainerOptions options)
           
 void DeleteAllKeysInList.execute(String containerName, ListContainerOptions listOptions)
           
 long CountBlobTypeInList.execute(String container, ListContainerOptions options)
           
 Iterable<? extends StorageMetadata> ConcatenateContainerLists.execute(String container, ListContainerOptions options)
           
 

Uses of ListContainerOptions in org.jclouds.blobstore.util
 

Methods in org.jclouds.blobstore.util with parameters of type ListContainerOptions
 void BlobUtils.clearContainer(String container, ListContainerOptions options)
           
 long BlobUtils.countBlobs(String container, ListContainerOptions options)
           
 

Uses of ListContainerOptions in org.jclouds.blobstore.util.internal
 

Methods in org.jclouds.blobstore.util.internal with parameters of type ListContainerOptions
 void BlobUtilsImpl.clearContainer(String container, ListContainerOptions options)
           
 long BlobUtilsImpl.countBlobs(String container, ListContainerOptions options)
           
 



Copyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.