> + @Nullable
> + ResourceGroup get(@PathParam("name") String name);
> +
> + @Named("resourcegroup:update")
> + @PATCH
> + @Produces(MediaType.APPLICATION_JSON)
> + @Path("/{name}")
> + @Nullable
> + @MapBinder(BindToJsonPayload.class)
> + ResourceGroup update(@PathParam("name") String name, @Nullable
> @PayloadParam("tags")Map<String, String> tags);
> +
> + @Named("resourcegroup:delete")
> + @DELETE
> + @ResponseParser(URIParser.class)
> + @Path("/{name}")
> + @Fallback(VoidOnNotFoundOr404.class)
Now that the method does not return `void` this should be better changed to
`NullOnNotFoundOr404.class` (although it has the same behaviour).
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/250/files/8d7d68bf33361d7f5df68c7e7232b03116ed6977#r58623136