> + @Nullable public abstract String expiration();
> +
> + @Nullable public abstract String key();
> +
> + public abstract int modifiedIndex();
> +
> + @Nullable public abstract String ttl();
> +
> + @Nullable public abstract String value();
> +
> + Node() {
> + }
> +
> + @SerializedNames({"createdIndex", "dir", "nodes", "expiration", "key",
> "modifiedIndex", "ttl", "value"})
> + public static Node create(int createdIndex, boolean dir, List<Node>
> nodes, String expiration, String key, int modifiedIndex, String ttl, String
> value) {
> + return new AutoValue_Node(createdIndex, dir, nodes, expiration,
> key, modifiedIndex, ttl, value);
Make lists immutable.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/234/files#r52901208