Class: ActiveLdap::Ldif::DeleteRecord
- Inherits:
-
ChangeRecord
- Object
- Record
- ChangeRecord
- ActiveLdap::Ldif::DeleteRecord
- 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 = []) ⇒ DeleteRecord
constructor
A new instance of DeleteRecord.
Methods inherited from ChangeRecord
#==, #add?, #delete?, #modify?, #modify_dn?, #modify_rdn?
Methods inherited from Record
Methods included from GetTextSupport
Constructor Details
#initialize(dn, controls = []) ⇒ DeleteRecord
Returns a new instance of DeleteRecord.
785 786 787 |
# File 'lib/active_ldap/ldif.rb', line 785 def initialize(dn, controls=[]) super(dn, {}, controls, "delete") end |