> + this.name = name;
> + return this;
> + }
> +
> + public Builder address(String address) {
> + this.address = address;
> + return this;
> + }
> +
> + public Builder description(String description) {
> + this.description = description;
> + return this;
> + }
> +
> + public AddressCreationOptions build() {
> + return create(name, address, description);
Absolutely. That sounds much better.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/106/files#r21347130