> +@AutoValue
> +public abstract class ContainerImageInfo {
> +   
> +   @Nullable public abstract String name();
> +   
> +   @Nullable public abstract Map<String, String> environment();
> +   
> +   @Nullable public abstract List<String> entrypoint();
> +   
> +   public abstract String hostname();
> +   
> +   @Nullable public abstract List<ImagePortsInfo> bind_ports();
> +   
> +   @Nullable public abstract List<String> volumes();
> +   
> +   @Nullable public abstract Map<String, String> restart_policy();

Same here. Apply the camel-case naming for accessors in all domain model 
classes.

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

Reply via email to