> + public String getName() {
> + return name;
> + }
> +
> + /**
> + * @return the description of the Pool.
> + */
> + @Nullable
> + public String getDescription() {
> + return description;
> + }
> +
> + /**
> + * @return the subnet id for this Pool.
> + */
> + public String getSubnetId() {
UpdatePool updatePool = ... [make an update pool]
My point was that an updatePool.getSubnetId() will return null (because you
cannot send a subnet id for update), so the getter should be marked as
nullable? Somewhat of an edge case though.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/146/files#r18003662