public boolean equals()

in cloudsigma2/src/main/java/org/jclouds/cloudsigma2/domain/BurstLevel.java [177:196]


   public boolean equals(Object o) {
      if (this == o) return true;
      if (!(o instanceof BurstLevel)) return false;

      BurstLevel that = (BurstLevel) o;

      if (cpu != that.cpu) return false;
      if (dssd != that.dssd) return false;
      if (ip != that.ip) return false;
      if (mem != that.mem) return false;
      if (sms != that.sms) return false;
      if (sqlServerStandard2008 != that.sqlServerStandard2008) return false;
      if (ssd != that.ssd) return false;
      if (tx != that.tx) return false;
      if (vlan != that.vlan) return false;
      if (windowsServer2008Standard != that.windowsServer2008Standard) return false;
      if (windowsWebServer2008 != that.windowsWebServer2008) return false;

      return true;
   }