You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jclouds.apache.org by Andrew Phillips <no...@github.com> on 2013/10/26 23:30:29 UTC

Re: [jclouds-labs-openstack] Openstack Grizzly Swift bulk operations (#30)

> +            String key = reader.nextName();
> +            if (key.equals("Number Files Created")) {
> +               created = reader.nextInt();
> +            } else if (key.equals("Errors")) {
> +               readErrors(reader, errors);
> +            } else {
> +               reader.skipValue();
> +            }
> +         }
> +         reader.endObject();
> +         return ExtractArchiveResponse.create(created, errors.build());
> +      }
> +
> +      @Override
> +      public void write(JsonWriter arg0, ExtractArchiveResponse arg1) throws IOException {
> +         throw new UnsupportedOperationException();

Add message?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/30/files#r7235128