in cloudsigma2/src/main/java/org/jclouds/cloudsigma2/domain/FirewallPolicy.java [202:216]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
FirewallPolicy that = (FirewallPolicy) o;
if (meta != null ? !meta.equals(that.meta) : that.meta != null) return false;
if (owner != null ? !owner.equals(that.owner) : that.owner != null) return false;
if (rules != null ? !rules.equals(that.rules) : that.rules != null) return false;
if (servers != null ? !servers.equals(that.servers) : that.servers != null) return false;
if (tags != null ? !tags.equals(that.tags) : that.tags != null) return false;
return true;
}