Class ListContainerOptions
- java.lang.Object
-
- org.jclouds.http.options.BaseHttpRequestOptions
-
- org.jclouds.openstack.swift.v1.options.ListContainerOptions
-
- All Implemented Interfaces:
HttpRequestOptions
public class ListContainerOptions extends BaseHttpRequestOptions
Options for listing containers.- See Also:
ContainerApi#list(ListContainerOptions)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classListContainerOptions.Builder
-
Field Summary
Fields Modifier and Type Field Description static ListContainerOptionsNONE-
Fields inherited from class org.jclouds.http.options.BaseHttpRequestOptions
formParameters, headers, pathSuffix, payload, queryParameters
-
-
Constructor Summary
Constructors Constructor Description ListContainerOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListContainerOptionsdelimiter(char delimiter)object names nested in the container are returned.ListContainerOptionsendMarker(String endMarker)object names less in value than the specified marker are returned.ListContainerOptionslimit(int limit)list operation returns no more than this amount.ListContainerOptionsmarker(String marker)object names greater in value than the specified marker are returned.ListContainerOptionspath(String path)object names nested in the pseudo path are returned.ListContainerOptionsprefix(String prefix)object names beginning with this substring are returned.-
Methods inherited from class org.jclouds.http.options.BaseHttpRequestOptions
buildFormParameters, buildPathSuffix, buildQueryParameters, buildRequestHeaders, buildStringPayload, equals, getFirstFormOrNull, getFirstHeaderOrNull, getFirstQueryOrNull, hashCode, replaceHeader, toString
-
-
-
-
Field Detail
-
NONE
public static final ListContainerOptions NONE
-
-
Method Detail
-
limit
public ListContainerOptions limit(int limit)
list operation returns no more than this amount.
-
marker
public ListContainerOptions marker(String marker)
object names greater in value than the specified marker are returned.
-
endMarker
public ListContainerOptions endMarker(String endMarker)
object names less in value than the specified marker are returned.
-
prefix
public ListContainerOptions prefix(String prefix)
object names beginning with this substring are returned.
-
delimiter
public ListContainerOptions delimiter(char delimiter)
object names nested in the container are returned.
-
path
public ListContainerOptions path(String path)
object names nested in the pseudo path are returned.
-
-