Class: ActiveLdap::Ldif::DeleteRecord

Inherits:
ChangeRecord show all
Defined in:
lib/active_ldap/ldif.rb

Instance Attribute Summary

Attributes inherited from ChangeRecord

#change_type, #controls

Attributes inherited from Record

#attributes, #dn

Instance Method Summary collapse

Methods inherited from ChangeRecord

#==, #add?, #delete?, #modify?, #modify_dn?, #modify_rdn?

Methods inherited from Record

#==, #to_hash, #to_s

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