> + List<RoleInfo> listRoles();
> +
> + @Named("roles:info")
> + @Fallback(NullOnRoleNotFoundAnd500.class)
> + @GET
> + @Path("/{name}")
> + RoleInfo getRole(@PathParam("name") String name);
> +
> + @Named("roles:create")
> + @POST
> + void createRole(@WrapWith("name") String name);
> +
> + @Named("roles:delete")
> + @Fallback(BooleanOnRoleNotFoundAnd500.class)
> + @DELETE
> + Boolean deleteRole(@WrapWith("name") String name);
Can we better return a primitive `boolean` here?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/166/files#r28676216