public boolean equals()

in apis/cloudstack/src/main/java/org/jclouds/cloudstack/domain/ISO.java [740:777]


   public boolean equals(Object obj) {
      if (this == obj) return true;
      if (obj == null || getClass() != obj.getClass()) return false;
      ISO that = ISO.class.cast(obj);
      return Objects.equal(this.id, that.id)
            && Objects.equal(this.account, that.account)
            && Objects.equal(this.accountId, that.accountId)
            && Objects.equal(this.bootable, that.bootable)
            && Objects.equal(this.checksum, that.checksum)
            && Objects.equal(this.created, that.created)
            && Objects.equal(this.crossZones, that.crossZones)
            && Objects.equal(this.displayText, that.displayText)
            && Objects.equal(this.domain, that.domain)
            && Objects.equal(this.domainid, that.domainid)
            && Objects.equal(this.format, that.format)
            && Objects.equal(this.hostId, that.hostId)
            && Objects.equal(this.hostName, that.hostName)
            && Objects.equal(this.hypervisor, that.hypervisor)
            && Objects.equal(this.isExtractable, that.isExtractable)
            && Objects.equal(this.isFeatured, that.isFeatured)
            && Objects.equal(this.isPublic, that.isPublic)
            && Objects.equal(this.isReady, that.isReady)
            && Objects.equal(this.jobId, that.jobId)
            && Objects.equal(this.jobStatus, that.jobStatus)
            && Objects.equal(this.name, that.name)
            && Objects.equal(this.osTypeId, that.osTypeId)
            && Objects.equal(this.osTypeName, that.osTypeName)
            && Objects.equal(this.passwordEnabled, that.passwordEnabled)
            && Objects.equal(this.removed, that.removed)
            && Objects.equal(this.size, that.size)
            && Objects.equal(this.sourceTemplateId, that.sourceTemplateId)
            && Objects.equal(this.status, that.status)
            && Objects.equal(this.templateTag, that.templateTag)
            && Objects.equal(this.templateType, that.templateType)
            && Objects.equal(this.zoneId, that.zoneId)
            && Objects.equal(this.zoneName, that.zoneName)
            && Objects.equal(this.tags, that.tags);
   }