> + * @param links The links of this Group.
> + * @return The builder object.
> + * @see Group#getLinks()
> + */
> + public Builder links(List<Link> links) {
> + this.links = ImmutableList.copyOf(links);
> + return this;
> + }
> +
> + /**
> + * @param scalingPolicy The scaling policies list of this Group.
> + * @return The builder object.
> + * @see Group#getScalingPolicy()
> + */
> + public Builder scalingPolicy(List<ScalingPolicyResponse>
> scalingPolicy) {
> + this.scalingPolicy = ImmutableList.copyOf(scalingPolicy);
Do we need `checkNotNull` here and in similar places?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/22/files#r6095392