public boolean equals()

in cloudsigma2/src/main/java/org/jclouds/cloudsigma2/domain/License.java [133:147]


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

      License that = (License) o;

      if (burstable != that.burstable) return false;
      if (longName != null ? !longName.equals(that.longName) : that.longName != null) return false;
      if (name != null ? !name.equals(that.name) : that.name != null) return false;
      if (resourceUri != null ? !resourceUri.equals(that.resourceUri) : that.resourceUri != null) return false;
      if (type != null ? !type.equals(that.type) : that.type != null) return false;
      if (userMetric != null ? !userMetric.equals(that.userMetric) : that.userMetric != null) return false;

      return true;
   }