mirror of https://github.com/apache/jclouds.git
Merge branch 'master' of git@github.com:jclouds/jclouds
* 'master' of git@github.com:jclouds/jclouds: Use as-blobstore when listing blobs in clojure wrapper.
This commit is contained in:
commit
a4ba069ad7
|
@ -225,11 +225,11 @@ example:
|
|||
\"somecontainer\" \"some-dir\"))
|
||||
"
|
||||
([blobstore container-name]
|
||||
(.list (.getBlobStore blobstore) container-name ))
|
||||
(.list (as-blobstore blobstore) container-name))
|
||||
|
||||
([blobstore container-name dir]
|
||||
(.list (.getBlobStore blobstore) container-name
|
||||
(.inDirectory (new ListContainerOptions) dir))))
|
||||
([blobstore container-name prefix]
|
||||
(.list (as-blobstore blobstore) container-name
|
||||
(.inDirectory (new ListContainerOptions) prefix))))
|
||||
|
||||
(defn create-blob
|
||||
"Create an blob representing text data:
|
||||
|
|
Loading…
Reference in New Issue