mirror of https://github.com/apache/jclouds.git
openstack: fixing SecurityGroup.cidr deserialization
This commit is contained in:
parent
a23048cab2
commit
1d32af6427
|
@ -38,8 +38,9 @@ public class SecurityGroupRule extends Ingress {
|
|||
public static class Cidr extends ForwardingObject {
|
||||
private String cidr;
|
||||
|
||||
private Cidr(String cidr) {
|
||||
this.cidr = cidr;
|
||||
@ConstructorProperties("cidr")
|
||||
protected Cidr(String cidr) {
|
||||
this.cidr = checkNotNull(cidr);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue