| java.lang.Object org.restlet.example.book.rest.ch3.S3Authorized org.restlet.example.book.rest.ch3.S3Bucket
S3Bucket | public class S3Bucket extends S3Authorized (Code) | | Amazon S3 bucket.
author: Jerome Louvel (contact@noelios.com) |
getObjects | public List<S3Object> getObjects(String prefix, String marker, String delimiter, Integer maxKeys)(Code) | | Get the objects in this bucket: all of them, or some subset.
If S3 decides not to return the whole bucket/subset, the second return
value will be set to true. To get the rest of the objects, you'll need to
manipulate the subset options.
Subset options are :Prefix, :Marker, :Delimiter, :MaxKeys. For details,
see the S3 docs on "Listing Keys".
The objects in this nucket. |
isTruncated | public boolean isTruncated()(Code) | | |
save | public Status save()(Code) | | Stores this bucket on S3. Analagous to ActiveRecord::Base#save, which
stores an object in the database.
|
|
|