> +   }
> +
> +   public Builder toBuilder() {
> +      return new ConcreteBuilder().fromExternalGatewayInfo(this);
> +   }
> +
> +   public static abstract class Builder {
> +      protected abstract Builder self();
> +
> +      protected String networkId;
> +
> +      /**
> +       * @see ExternalGatewayInfo#getNetworkId()
> +       */
> +      public Builder networkId(String networkId) {
> +         this.networkId = networkId;

Null check here or in the class' constructor? Or can `networkId` be null..?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/47/files#r7546850

Reply via email to