> +import org.jclouds.io.Payloads;
> +import org.jclouds.openstack.swift.v1.domain.SwiftObject;
> +import org.jclouds.rest.InvocationContext;
> +
> +import com.google.common.base.Function;
> +import com.google.common.collect.FluentIterable;
> +
> +public class ParseObjectListFromResponse implements Function<HttpResponse, 
> FluentIterable<SwiftObject>>,
> +      InvocationContext<ParseObjectListFromResponse> {
> +
> +   private static final class InternalObject {
> +      String name;
> +      String hash;
> +      long bytes;
> +      String content_type;
> +      Date last_modified;

Use Java-style variable names?

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

Reply via email to