Class: ActiveLdap::Ldif::AddRecord
- Inherits:
-
ChangeRecord
- Object
- Record
- ChangeRecord
- ActiveLdap::Ldif::AddRecord
- Defined in:
- lib/active_ldap/ldif.rb
Instance Attribute Summary
Attributes inherited from ChangeRecord
Attributes inherited from Record
Instance Method Summary collapse
-
#initialize(dn, controls = [], attributes = {}) ⇒ AddRecord
constructor
A new instance of AddRecord.
Methods inherited from ChangeRecord
#==, #add?, #delete?, #modify?, #modify_dn?, #modify_rdn?
Methods inherited from Record
Methods included from GetTextSupport
Constructor Details
#initialize(dn, controls = [], attributes = {}) ⇒ AddRecord
Returns a new instance of AddRecord.
779 780 781 |
# File 'lib/active_ldap/ldif.rb', line 779 def initialize(dn, controls=[], attributes={}) super(dn, attributes, controls, "add") end |