> +import com.google.auto.value.AutoValue; > +import com.google.common.collect.ImmutableList; > + > +@AutoValue > +public abstract class Member { > + > + public abstract String id(); > + > + @Nullable > + public abstract String name(); > + > + public abstract List<String> peerURLs(); > + > + public abstract List<String> clientURLs(); > + > + Member() {
@zack-shoylev just following conventions I've seen elsewhere within jclouds-labs by providing an empty constructor for AutoValue classes. If the standard going forward is to remove these, as they are not really needed anyway, then I'm more than happy to remove it ;) --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/196/files#r37632279