> + @ConstructorProperties({"id", "tenant_id", "name", "description",
> "security_group_rules"})
> + protected SecurityGroup(String id, String tenantId, String name, String
> description,
> + ImmutableList<SecurityGroupRule> securityGroupRules) {
> + this.id = id;
> + this.tenantId = tenantId;
> + this.name = name;
> + this.description = description;
> + this.securityGroupRules = securityGroupRules;
> + }
> +
> + /**
> + * Copy constructor
> + * @param securityGroup
> + */
> + private SecurityGroup(SecurityGroup securityGroup) {
> + this(
Suggestions?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/132/files#r16568581