class ActiveLdap::Schema::Entry

def eql?(other)

def eql?(other)
  self.class == other.class and
    (id == other.id or
     (id.nil? and other.nil? and name == other.name))
end