> @@ -367,6 +405,22 @@ public static CreateServerOptions
> securityGroupNames(Iterable<String> groupNames
> CreateServerOptions options = new CreateServerOptions();
> return
> CreateServerOptions.class.cast(options.securityGroupNames(groupNames));
> }
> +
> + /**
> + * @see CreateServerOptions#getNetworks
> + */
> + public static CreateServerOptions networks(String... networks) {
> + CreateServerOptions options = new CreateServerOptions();
> + return CreateServerOptions.class.cast(options.networks(networks));
There might be a lot of other places (well... within nova) where this
particular code style is used.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/72/files#r5466392