> + @GET
> + @SelectJson("stack")
> + @Path("/{id}")
> + @Fallback(NullOnNotFoundOr404.class)
> + Stack get(@PathParam("id") String stackId);
> +
> + @Named("stack:create")
> + @POST
> + @SelectJson("stack")
> + Stack create(@BinderParam(BindToJsonPayload.class) CreateStack options);
> +
> + @Named("stack:delete")
> + @DELETE
> + @Path("/{stack_name}/{stack_id}")
> + @Fallback(NullOnNotFoundOr404.class)
> + @Nullable
A primitive can't be null, change the fallback to `FalseOnNotFoundOr404`.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/188/files#r28423839