> + @Produces(MediaType.APPLICATION_JSON)
> + @MapBinder(BindToJsonPayload.class)
> + ResourceGroup create(@PathParam("name") String name,
> @PayloadParam("location") String location, @Nullable
> @PayloadParam("tags")Map<String, String> tags);
> +
> + @Named("resourcegroup:get")
> + @GET
> + @Path("/{name}")
> + @Fallback(NullOnNotFoundOr404.class)
> + @Nullable
> + ResourceGroup get(@PathParam("name") String name);
> +
> + @Named("resourcegroup:update")
> + @PATCH
> + @Produces(MediaType.APPLICATION_JSON)
> + @Path("/{name}")
> + @Nullable
Can this method return a null result considering it does not have a fallback?
---
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#r58623215