> +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();

Nah it doesn't. Returns a <i>reaaally</i> large response containing all of the 
available images.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/119/files#r22982319

Reply via email to