trevorflanagan commented on this pull request.
> + @Named("image:getOsImage")
+ @GET
+ @Path("/osImage/{id}")
+ @Fallback(Fallbacks.NullOnNotFoundOr404.class)
+ OsImage getOsImage(@PathParam("id") String id);
+
+ @Named("image:getCustomerImage")
+ @GET
+ @Path("/customerImage/{id}")
+ @Fallback(Fallbacks.NullOnNotFoundOr404.class)
+ CustomerImage getCustomerImage(@PathParam("id") String id);
+
+ final class ParseOsImages extends ParseJson<OsImages> {
+
+ @Inject
+ public ParseOsImages(Json json) {
👍
--
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/380#discussion_r110690057