You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@jclouds.apache.org by Ignasi Barrera <no...@github.com> on 2016/08/01 09:59:55 UTC

Re: [jclouds/jclouds-labs] JCLOUDS-1140 oneandone-sharedstorages-api (#304)

> +import org.jclouds.json.SerializedNames;
> +
> +@AutoValue
> +public abstract class CriticalAlert {
> +
> +   public abstract String type();
> +
> +   public abstract String description();
> +
> +   public abstract String date();
> +
> +   @SerializedNames({"type", "description", "date"})
> +   public static CriticalAlert create(String type, String description, String date) {
> +      return new AutoValue_CriticalAlert(type, description, date);
> +   }
> +}

Are these two Alert classes actually used?

---
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/304/files/b4ecd2bdfe26ff68d6dd6c9e03a4de2e3eba3fe2#r72952277