public class ListContainerOptions extends ListOptions implements Cloneable
import static org.jclouds.blobstore.options.ListContainerOptions.Builder.*
BlobStore connection = // get connection
Future> list = connection.list("container",inDirectory("home/users").maxResults(1000));
Modifier and Type | Class and Description |
---|---|
static class |
ListContainerOptions.Builder |
static class |
ListContainerOptions.ImmutableListContainerOptions |
ListOptions.ImmutableListOptions
Modifier and Type | Field and Description |
---|---|
static ListContainerOptions.ImmutableListContainerOptions |
NONE |
Constructor and Description |
---|
ListContainerOptions() |
Modifier and Type | Method and Description |
---|---|
ListContainerOptions |
afterMarker(String marker)
Place to continue a listing at.
|
ListContainerOptions |
clone() |
boolean |
equals(Object obj) |
String |
getDir() |
int |
hashCode() |
ListContainerOptions |
inDirectory(String dir)
This will list the contents of a virtual or real directory path.
|
boolean |
isDetailed() |
boolean |
isRecursive() |
ListContainerOptions |
maxResults(int maxKeys)
The maximum number of values you'd like to see in the response body.
|
ListContainerOptions |
recursive()
return a listing of all objects inside the store, recursively.
|
String |
toString() |
ListContainerOptions |
withDetails()
populate each result with detailed such as metadata even if it incurs extra requests to the
service.
|
getMarker, getMaxResults
public static final ListContainerOptions.ImmutableListContainerOptions NONE
public String getDir()
public boolean isRecursive()
public boolean isDetailed()
public ListContainerOptions inDirectory(String dir)
public ListContainerOptions afterMarker(String marker)
afterMarker
in class ListOptions
public ListContainerOptions maxResults(int maxKeys)
maxResults
in class ListOptions
public ListContainerOptions recursive()
public ListContainerOptions withDetails()
public ListContainerOptions clone()
clone
in class ListOptions
Copyright © 2009-2012 jclouds. All Rights Reserved.