> + public abstract ResourceGroupProperties properties();
> +
> + @SerializedNames({"id", "name", "location", "tags", "properties"})
> + public static ResourceGroup create(String id, String name, String
> location, HashMap<String, String> tags, ResourceGroupProperties properties) {
> + return new AutoValue_ResourceGroup(id, name, location, tags,
> properties);
> + }
> +
> + public Builder toBuilder() {
> + return builder().fromResourceGroup(this);
> + }
> +
> + public static Builder builder() {
> + return new Builder();
> + }
> +
> + public static final class Builder {
notice since 1.1 Auto Value lib adds
https://github.com/google/auto/tree/master/value#builders
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/250/files/f7cc1b437f11378e105bba552e3cfee9d7491872#r57514228