> +public interface ProjectApi {
> + /**
> + * List the projects this account has access to.
> + *
> + * @param options if present, how to constrain the list
> + */
> + @Named("listProjects")
> + @GET
> + @QueryParams(keys = { "command", "listAll" }, values = { "listProjects",
> "true" })
> + @SelectJson("project")
> + @Consumes(MediaType.APPLICATION_JSON)
> + @Fallback(EmptySetOnNotFoundOr404.class)
> + Set<Project> listProjects(ListProjectsOptions... options);
> +
> + /**
> + * get a specific Project by id
Done.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/215/files#r7931347