> + @SerializedNames({ "Detach" }) > + public static ExecStartParams create(boolean detach) { > + return builder().detach(detach).build(); > + } > + > + public static Builder builder() { > + return new AutoValue_ExecStartParams.Builder().detach(false); > + } > + > + @AutoValue.Builder > + public abstract static class Builder { > + > + public abstract Builder detach(boolean b); > + > + public abstract ExecStartParams build(); > + }
Some domain classes have builders, some not. Should we remove all the builders, given that these classes are pretty simple, for consistency? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/205/files#r40972202