> + @GET
> + @Path("/{id}")
> + @ResponseParser(ParseRouters.class)
> + @Fallback(EmptyRoutersFallback.class)
> + Routers get(@PathParam("id") String id);
> +
> + /**
> + * Create a new router
> + *
> + * @param router Options for creating a router
> + * @return the newly created router
> + */
> + @Named("router:create")
> + @POST
> + @SelectJson("router")
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
Can a POST to /routers return a 404?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/111/files#r14010939