> + 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)) {
I think this is fine, I doubt they will switch off camel case for this.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/52/files#r5155264