> + */
> +package org.jclouds.azurecomputearm.domain;
> +
> +import com.google.auto.value.AutoValue;
> +import java.util.HashMap;
> +import org.jclouds.javax.annotation.Nullable;
> +import org.jclouds.json.SerializedNames;
> +
> +
> +@AutoValue
> +public abstract class ResourceGroup {
> +
> + @AutoValue
> + public abstract static class ResourceGroupProperties{
> +
> + public ResourceGroupProperties() {
When using Google Auto-value, constructors shouldn't be used. A best practice
is to declare them package-private instead of public to enforce that.
---
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#r57576612