List both committed and uncommitted Azure blocks

This commit is contained in:
Andrew Gaul 2015-04-25 11:20:16 -07:00
parent 66516106a2
commit 09b54eb03f
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ public interface AzureBlobClient extends Closeable {
@GET @GET
@Path("{container}/{name}") @Path("{container}/{name}")
@XMLResponseParser(BlobBlocksResultsHandler.class) @XMLResponseParser(BlobBlocksResultsHandler.class)
@QueryParams(keys = { "comp" }, values = { "blocklist" }) @QueryParams(keys = { "comp", "blocklisttype" }, values = { "blocklist", "all" })
ListBlobBlocksResponse getBlockList( ListBlobBlocksResponse getBlockList(
@PathParam("container") @ParamValidators(ContainerNameValidator.class) String container, @PathParam("container") @ParamValidators(ContainerNameValidator.class) String container,
@PathParam("name") String name); @PathParam("name") String name);