> + */
> + public static Builder builder() {
> + return new Builder();
> + }
> +
> + /**
> + * Gets a Builder configured as this object.
> + */
> + public Builder toBuilder() {
> + return new Builder().fromHealthMonitorStatus(this);
> + }
> +
> + /**
> + * Builder.
> + */
> + public static class Builder {
This builder is probably not needed, unless a jclouds user has to be able to
build a Status as part of a request object.
If this is something that you get from the service, but don't pass to the
service, the builder is not needed (and might be confusing to have it).
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/146/files#r17863685