trevorflanagan commented on this pull request.
> + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
+ CustomerImage getCustomerImage(@PathParam("id") String id);
+
+ final class ParseOsImages extends ParseJson<OsImages> {
+
+ @Inject
+ public ParseOsImages(Json json) {
+ super(json, TypeLiteral.get(OsImages.class));
+ }
+
+ public static class ToPagedIterable extends ArgsToPagedIterable<OsImage,
ToPagedIterable> {
+
+ private DimensionDataCloudControlApi api;
+
+ @Inject
+ public ToPagedIterable(DimensionDataCloudControlApi api) {
👍
--
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_r110690104