public boolean equals()

in elb/src/main/java/org/jclouds/elb/domain/SecurityGroupAndOwner.java [108:117]


   public boolean equals(Object obj) {
      if (this == obj)
         return true;
      if (obj == null)
         return false;
      if (getClass() != obj.getClass())
         return false;
      SecurityGroupAndOwner other = (SecurityGroupAndOwner) obj;
      return Objects.equal(this.name, other.name) && Objects.equal(this.owner, other.owner);
   }