> +
> + /**
> + * @return Specifies the self-navigating JSON document paths.
> + */
> + public abstract Set<Link> getLinks();
> +
> + @SerializedNames({"resource_name", "logical_resource_id",
> "resource_status_reason", "updated_time", "required_by", "resource_status",
> "physical_resource_id", "resource_type", "links"})
> + private static StackResource create(String name, String
> logicalResourceId, String statusReason, Date updated, Set<String> requiredBy,
> + StackResourceStatus status, String
> physicalResourceId, String resourceType, Set<Link> links) {
> + return new AutoValue_StackResource(
> + name,
> + logicalResourceId,
> + physicalResourceId,
> + status,
> + statusReason,
> + requiredBy != null ? ImmutableSet.copyOf(requiredBy) : null,
Add nullable to the signature and to the get
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/188/files#r28665336