in cloudsigma2/src/main/java/org/jclouds/cloudsigma2/domain/AccountUsage.java [178:206]
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof AccountUsage)) return false;
AccountUsage that = (AccountUsage) o;
if (cpu != null ? !cpu.equals(that.cpu) : that.cpu != null) return false;
if (dssd != null ? !dssd.equals(that.dssd) : that.dssd != null) return false;
if (ip != null ? !ip.equals(that.ip) : that.ip != null) return false;
if (mem != null ? !mem.equals(that.mem) : that.mem != null) return false;
if (sms != null ? !sms.equals(that.sms) : that.sms != null) return false;
if (sqlServerStandard2008 != null
? !sqlServerStandard2008.equals(that.sqlServerStandard2008)
: that.sqlServerStandard2008 != null)
return false;
if (ssd != null ? !ssd.equals(that.ssd) : that.ssd != null) return false;
if (tx != null ? !tx.equals(that.tx) : that.tx != null) return false;
if (vlan != null ? !vlan.equals(that.vlan) : that.vlan != null) return false;
if (windowsServer2008Standard != null
? !windowsServer2008Standard.equals(that.windowsServer2008Standard)
: that.windowsServer2008Standard != null)
return false;
if (windowsWebServer2008 != null
? !windowsWebServer2008.equals(that.windowsWebServer2008)
: that.windowsWebServer2008 != null)
return false;
return true;
}