> 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));
(related to the above question) What's with the AtomicReferences in place of
"plain" ZoneAndName objects here?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/167/files#r6819396