> + private boolean inBlock = false;
> + private boolean inName = false;
> + private boolean inSize = false;
> + private String blockName;
> + private long size;
> + private List<BlobBlockProperties> blocks = new
> LinkedList<BlobBlockProperties>();
> +
> + @Override
> + public ListBlobBlocksResponse getResult() {
> + return new ListBlobBlocksResponseImpl(blocks);
> + }
> +
> + @Override
> + public void startElement(String uri, String localName, String qName,
> Attributes attributes)
> + throws SAXException {
> + if ("CommittedBlocks".equals(qName)) {
Are case-sensitive comparisons OK here or would case-insensitive be safer?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/52/files#r5154397