> + */
> +package org.jclouds.docker.domain;
> +
> +import org.jclouds.json.SerializedNames;
> +
> +import com.google.auto.value.AutoValue;
> +
> +@AutoValue
> +public abstract class Resource {
> +
> +   public abstract String resource();
> +
> +   @SerializedNames({ "Resource" })
> +   public static Resource create(String resource) {
> +      return new AutoValue_Resource(resource);
> +   }

that applies to all the value classes?

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

Reply via email to