> + * > + * @see <a > + * > href="http://download.cloud.com/releases/3.0.6/api_3.0.6/root_admin/listProjects.html" > + * /> > + * @author Andrew Bayer > + */ > +public class ListProjectsOptions extends AccountInDomainOptions { > + > + public static final ListProjectsOptions NONE = new ListProjectsOptions(); > + > + /** > + * @param id > + * list projects by project ID > + */ > + public ListProjectsOptions id(String id) { > + this.queryParameters.replaceValues("id", ImmutableSet.of(id + ""));
Null avoidance, I believe. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/215/files#r7915914
