# File lib/active_ldap/base.rb, line 685
    def methods(inherited_too=true)
      target_names = entry_attribute.all_names
      target_names -= ['objectClass', Inflector.underscore('objectClass')]
      super + target_names.uniq.collect do |x|
        [x, "#{x}=", "#{x}?", "#{x}_before_type_cast"]
      end.flatten
    end