> + @QueryParam("limit") String limit,
> + @QueryParam("since") String since,
> + @QueryParam("before") String before);
> +
> + /**
> + * List containers
> + *
> + * @return the running containers.
> + */
> + @Named("containers:list")
> + @GET
> + @Path("/containers/json")
> + @Consumes(MediaType.APPLICATION_JSON)
> + @Fallback(Fallbacks.EmptySetOnNotFoundOr404.class)
> + List<Container> listContainers(
> + @QueryParam("all") boolean all);
Following the conventions in other providers, can we have a method
`listContainers()` and a `listContainers(ListContainerOptions options)` to
avoid forcing users to always provide the query params?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r10838673