> if (rule.getIpRange() != null)
> builder.cidrBlock(rule.getIpRange());
>
> return builder.build();
> }
> +
> + protected Predicate<String> isSecurityGroupInZone(final String groupName)
> {
> + return new Predicate<String>() {
> +
> + @Override
> + public boolean apply(String zone) {
> + AtomicReference<ZoneAndName> securityGroupInZoneRef =
> Atomics.newReference(ZoneAndName.fromZoneAndName(zone, groupName));
Reusing logic/behavior/style from elsewhere in nova, basically.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/167/files#r6837893