> + * > + * @see <a href= > + * > "http://download.cloud.com/releases/3.0.6/api_3.0.6/root_admin/listEgressFirewallRules.html" > + * /> > + * @author Hyeonu Jeong > + */ > +public class ListEgressFirewallRulesOptions extends AccountInDomainOptions { > + > + public static final ListEgressFirewallRulesOptions NONE = new > ListEgressFirewallRulesOptions(); > + > + /** > + * @param id > + * firewall rule ID > + */ > + public ListEgressFirewallRulesOptions id(String id) { > + this.queryParameters.replaceValues("id", ImmutableSet.of(id + ""));
Ah, so it's probably weird there, too... Is the ID allowed to be `null`? If not, `ImmutableSet.of(id)` should be sufficient. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/229/files#r8322041
