> +public interface ContainersApi {
> +
> + @Named("containers:list")
> + @GET
> + @Fallback(EmptyListOnNotFoundOr404.class)
> + List<ContainerInfo> listContainers();
> +
> + @Named("containers:info")
> + @GET
> + @Path("/{id}")
> + ContainerInfo getContainer(@PathParam("id") String id);
> +
> + @Named("containers:logs")
> + @GET
> + @Path("/{id}/logs")
> + String getContainerLogs(@PathParam("id") String id);
Same comment about the length of the response. Worth changing to an InputStream
or Reader, or just removing this method?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/116/files#r22195791