> + @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);
do you mean something like
https://github.com/jclouds/jclouds/blob/master/apis/openstack-nova/src/main/java/org/jclouds/openstack/nova/v2_0/features/ImageAsyncApi.java#L68-L89
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r10844014