Ruby 1.8.7 リファレンスマニュアル > ライブラリ一覧 > uriライブラリ > URI::LDAPクラス
クラスの継承リスト: URI::LDAP < URI::Generic < URI < Object < Kernel
LDAP URI を表すクラスです。[RFC2255] (Obsoleted by [RFC4510], [RFC4516])。
ldap://<host>/<dn>[?<attrs>[?<scope>[?<filter>[?<extensions>]]]]
build(ary) -> URI::LDAP
[permalink][rdoc]build(hash) -> URI::LDAP
引数で与えられた URI 構成要素から URI::LDAP オブジェクトを生成します。 引数の正当性を検査します。
[:host, :port, :dn, :attributes, :scope, :filter, :extensions]
:host, :port, :dn, :attributes, :scope, :filter, :extensionsのいずれかです。
例:
p URI::LDAP.build(["example.com", "1", "/a", "b", "c", "d", "e=f"]).to_s #=> "ldap://example.com:1/a?b?c?d?e=f"
new(scheme, userinfo, host, port, registry, path, opaque, query, fragment, arg_check = false) -> URI::LDAP
[permalink][rdoc]汎用的な構成要素から URI::LDAP オブジェクトを生成します。 build と異なり、デフォルトでは引数の正当性を検査しません。
attributes -> String
[permalink][rdoc]自身の Attribute を文字列で返します。
attributes=(s)
[permalink][rdoc]自身の Attribute を文字列で設定します。
dn -> String
[permalink][rdoc]自身の Distinguished Name を文字列で返します。
dn=(s)
[permalink][rdoc]自身の Distinguished Name を文字列で設定します。
extensions -> String
[permalink][rdoc]自身の extensions を文字列で返します。
extensions=(s)
[permalink][rdoc]自身の extensions を文字列で設定します。
filter -> String
[permalink][rdoc]自身の filter を文字列で返します。
filter=(s)
[permalink][rdoc]自身の filter を文字列で設定します。
scope -> String
[permalink][rdoc]自身の Scope を文字列で返します。
scope=(s)
[permalink][rdoc]自身の Scope を文字列で設定します。