> + // Optional attributes
> + @Named("status_description")
> + protected final String statusDescription;
> +
> + @ConstructorProperties({ "monitor_id", "status", "status_description" })
> + protected HealthMonitorStatus(String id, LBaaSStatus status, String
> statusDescription) {
> + this.id = id;
> + this.status = status;
> + this.statusDescription = statusDescription;
> + }
> +
> + /**
> + * @return the id of the HealthMonitorStatus.
> + */
> + @Nullable
> + public String getId() {
really? Are all of the contents including the id nullable?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/146/files#r18350860