> + @Path("/{id}")
> + @SelectJson("router")
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + Router get(@PathParam("id") String id);
> +
> + /**
> + * Create a new router
> + *
> + * @param options optional arguments
> + * @return the newly created router
> + */
> + @Named("router:create")
> + @POST
> + @SelectJson("router")
> + @MapBinder(CreateRouterOptions.class)
> + Router create(CreateRouterOptions... options);
An array of options objects?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/47/files#r7546865