module ActiveLdap

def const_missing(id)

def const_missing(id)
  case id
  when :ConnectionNotEstablished
    message =
      _("ActiveLdap::ConnectionNotEstablished has been deprecated " \
        "since 1.1.0. " \
        "Please use ActiveLdap::ConnectionNotSetup instead.")
    ActiveLdap.deprecator.warn(message)
    const_set("ConnectionNotEstablished", ConnectionNotSetup)
    ConnectionNotEstablished
  else
    super
  end
end

def deprecator # :nodoc:

:nodoc:
def deprecator # :nodoc:
  @deprecator ||= ActiveSupport::Deprecation.new
end

def get_text_supported?

def get_text_supported?
  true
end