public boolean equals()

in rds/src/main/java/org/jclouds/rds/domain/SubnetGroup.java [185:194]


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