> + @SelectJson("router")
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + @Nullable
> + Router update(@PathParam("id") String id, @WrapWith("router")
> Router.UpdateOptions router);
> +
> + /**
> + * Deletes the specified router
> + *
> + * @param id the id of the router to delete
> + * @return true if delete successful, false if not
> + */
> + @Named("router:delete")
> + @DELETE
> + @Path("/{id}")
> + @Fallback(Fallbacks.FalseOnNotFoundOr404.class)
> + boolean delete(@PathParam("id") String id);
Are we going with primitive `boolean` or `Boolean` in the APIs?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/111/files#r15358999