> @@ -187,6 +221,20 @@ public String toString() {
>
> @Provides
> @Singleton
> + protected LoadingCache<String, SshKeyPair> keyPairMap(
> + CacheLoader<String, SshKeyPair> in) {
> + return CacheBuilder.newBuilder().build(in);
> + }
> +
> + @Provides
> + @Singleton
> + protected LoadingCache<ZoneAndName, SecurityGroup> securityGroupMap(
> + CacheLoader<ZoneAndName, SecurityGroup> in) {
> + return CacheBuilder.newBuilder().build(in);
> + }
> +
> + @Provides
> + @Singleton
> protected LoadingCache<String, Set<IPForwardingRule>>
> getIPForwardingRulesByVirtualMachine(
> CacheLoader<String, Set<IPForwardingRule>> getIPForwardingRules) {
Yeah, I think I was going with consistency with the IDE generated name
elsewhere. Will switch.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/45/files#r4843115