> +   @GET
> +   @Path("/api/containers")
> +   @Fallback(EmptyListOnNotFoundOr404.class)
> +   List<ContainerInfo> listContainers();
> +   
> +   @Named("containers:info")
> +   @GET
> +   @Path("/api/containers/{id}")
> +   @Fallback(NullOn500.class)
> +   ContainerInfo getContainer(@PathParam("id") String id);
> +   
> +   @Named("containers:logs")
> +   @GET
> +   @Path("/api/containers/{id}/logs")
> +   @Fallback(NullOn500.class)
> +   String getContainerLogs(@PathParam("id") String id);

That's even better :)

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

Reply via email to