> +
> + /**
> + * @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> {
Idea was saying Parameterized is wrong. Checked merriam-webster's and it seems
both are correct.
http://www.merriam-webster.com/dictionary/parameterize
Probably still going to fix it though.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/111/files#r15359259