> + @MapBinder(BindToJsonPayload.class)
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + Server deleteHdd(@PathParam("serverId") String serverId,
> @PathParam("hddId") String hddId);
> +
> + @Named("servers:image:get")
> + @GET
> + @Path("/{serverId}/image")
> + @ResponseParser(ServerApi.ImageParser.class)
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + Image getImage(@PathParam("serverId") String serverId);
> +
> + @Named("server:image:update")
> + @PUT
> + @Path("/{serverId}/image")
> + @ResponseParser(ServerApi.UpdateServerParser.class)
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
Remove 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/275/files/0767d011a984011133c9e34b3389b449ca0756cd#r68669618