> +
> + /**
> + * @return the Builder for creating a new Router
> + */
> + public static CreateBuilder createOptions(String name) {
> + return new CreateBuilder(name);
> + }
> +
> + /**
> + * @return the Builder for updating a Router
> + */
> + public static UpdateBuilder updateOptions() {
> + return new UpdateBuilder();
> + }
> +
> + private static abstract class Builder<ParametrizedBuilderType> {
Nice catch!
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/111/files#r15358445