> +
> +@AutoValue
> +public abstract class CreateMember {
> +
> +   @Nullable
> +   public abstract String name();
> +
> +   public abstract List<String> peerURLs();
> +
> +   public abstract List<String> clientURLs();
> +
> +   CreateMember() {
> +   }
> +
> +   @SerializedNames({ "name", "peerURLs", "clientURLs" })
> +   public static CreateMember create(final String name, final List<String> 
> peerURLs, List<String> clientURLs) {

Aaahhhh yes you noted this before and I missed it amongst other changes being 
made. Jumping on this now

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

Reply via email to