> + @Path("/{serverId}/volumes/{volumeId}")
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
> + @ResponseParser(VolumeApi.VolumeParser.class)
> + Volume getVolume(@PathParam("dataCenterId") String dataCenterId,
> @PathParam("serverId") String serverId, @PathParam("volumeId") String
> volumeId);
> +
> + @Named("server:cdrom:list")
> + @GET
> + @Path("/{serverId}/cdroms")
> + @Fallback(EmptyListOnNotFoundOr404.class)
> + @SelectJson("items")
> + List<Image> listAttachedCdroms(@PathParam("dataCenterId") String
> dataCenterId, @PathParam("serverId") String serverId);
> +
> + @Named("server:cdrom:attach")
> + @POST
> + @MapBinder(AttachCdromRequestBinder.class)
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
Remove fallback
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/227/files#r51093510