> + * 
> + * @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 + ""));

Never thought about that.

I thinks id can be `null`, and `ImmutableSet.of(id)` will generated like 
`id=null`. cause `null` toString is `null` and empty string toString is ` `.


---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/229/files#r8322842

Reply via email to