Class: ActiveLdap::Ldif::ModifyDNRecord

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

Instance Attribute Summary

Attributes inherited from ModifyNameRecord

#new_rdn, #new_superior

Attributes inherited from ChangeRecord

#change_type, #controls

Attributes inherited from Record

#attributes, #dn

Instance Method Summary collapse

Methods inherited from ModifyNameRecord

#delete_old_rdn?

Methods inherited from ChangeRecord

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

Methods inherited from Record

#==, #to_hash, #to_s

Constructor Details

#initialize(dn, controls, new_rdn, delete_old_rdn, new_superior = nil) ⇒ ModifyDNRecord

Returns a new instance of ModifyDNRecord



829
830
831
# File 'lib/active_ldap/ldif.rb', line 829

def initialize(dn, controls, new_rdn, delete_old_rdn, new_superior=nil)
  super(dn, controls, "moddn", new_rdn, delete_old_rdn, new_superior)
end