> @@ -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) {
`getIPForwardingRules` looks like an IDE-generated name. `ipForwardingRules` or
`in` or..?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/45/files#r4842243