> +         protected String network_id;
> +
> +         protected ExternalGatewayInfo(String network_id) {
> +            this.network_id = network_id;
> +         }
> +      }
> +   }
> +
> +   protected String name;
> +   protected Boolean adminStateUp;
> +   protected ExternalGatewayInfo externalGatewayInfo;
> +
> +   protected CreateRouterOptions() {
> +      this.name = null;
> +      this.adminStateUp = null;
> +      this.externalGatewayInfo = null;

Simply call
```
this(null, null, null)
```
?

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

Reply via email to