Class: ActiveLdap::Schema::Syntaxes::DistinguishedName
- Inherits:
-
Base
- Object
- Base
- ActiveLdap::Schema::Syntaxes::DistinguishedName
show all
- Defined in:
- lib/active_ldap/schema/syntaxes.rb
Constant Summary
Constants inherited
from Base
Base::PRINTABLE_CHARACTER, Base::SYNTAXES, Base::UNPRINTABLE_CHARACTER
Instance Method Summary
collapse
Methods inherited from Base
#binary?, #valid?, #validate
included
Instance Method Details
#normalize_value(value) ⇒ Object
141
142
143
144
145
146
147
|
# File 'lib/active_ldap/schema/syntaxes.rb', line 141
def normalize_value(value)
if value.is_a?(DN)
value.to_s
else
value
end
end
|
#type_cast(value) ⇒ Object
134
135
136
137
138
139
|
# File 'lib/active_ldap/schema/syntaxes.rb', line 134
def type_cast(value)
return nil if value.nil?
DN.parse(value)
rescue DistinguishedNameInvalid
value
end
|