> +import org.jclouds.rest.annotations.XMLResponseParser;
> +
> +@RequestFilters({BasicAuthentication.class,
> ProfitBricksSoapMessageEnvelope.class})
> +@Consumes(MediaType.TEXT_XML)
> +@Produces(MediaType.TEXT_XML)
> +public interface ImageApi {
> +
> + /**
> + * @return Outputs a list of all HDD and/or CD-ROM/DVD images existing on
> or uploaded to the ProfitBricks FTP server.
> + */
> + @POST
> + @Named("image:getall")
> + @Payload("<ws:getAllImages/>")
> + @XMLResponseParser(ImageListResponseHandler.class)
> + @Fallback(Fallbacks.EmptyListOnNotFoundOr404.class)
> + List<Image> getAllImages();
Does the Profitbricks API return paginated results?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/119/files#r22944957