> +
> + private abstract static class Builder<ParameterizedBuilderType> {
> + // Keep track of the builder's state.
> + protected SecurityGroup securityGroup;
> +
> + /**
> + * No-parameters constructor.
> + * */
> + private Builder() {
> + securityGroup = new SecurityGroup();
> + }
> +
> + protected abstract ParameterizedBuilderType self();
> +
> + /**
> + * The tenant id for this rule. Usually can only be specified by
> administrators.
`The tenant id for this security group.` ?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/132/files#r16568815