Package ldaptor :: Package protocols :: Package ldap :: Module ldapsyntax :: Class LDAPEntryWithAutoFill
[hide private]
[frames] | no frames]

Class LDAPEntryWithAutoFill

source code

         object --+            
                  |            
entry.BaseLDAPEntry --+        
                      |        
entry.EditableLDAPEntry --+    
                          |    
        LDAPEntryWithClient --+
                              |
                             LDAPEntryWithAutoFill

Instance Methods [hide private]
 
__init__(self, *args, **kwargs)
Initialize the object.
source code
 
_cb_addAutofiller(self, r, autoFiller) source code
 
addAutofiller(self, autoFiller) source code
 
journal(self, journalOperation)
Add a Modification into the list of modifications that need to be flushed to the LDAP server.
source code

Inherited from LDAPEntryWithClient: __contains__, __delitem__, __eq__, __getitem__, __len__, __ne__, __nonzero__, __repr__, __setitem__, __str__, addChild, bind, buildAttributeSet, commit, delete, fetch, get, has_key, items, keys, lookup, move, namingContext, search, setPassword, setPasswordMaybe_ExtendedOperation, setPasswordMaybe_Samba, setPassword_ExtendedOperation, setPassword_Samba, undo

Inherited from entry.EditableLDAPEntry: __provides__

Inherited from entry.BaseLDAPEntry: __hash__, __providedBy__, diff, hasMember

Inherited from entry.BaseLDAPEntry (private): _bind

Inherited from object: __delattr__, __format__, __getattribute__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Class Variables [hide private]

Inherited from entry.EditableLDAPEntry: __implemented__

Inherited from entry.BaseLDAPEntry: dn

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, *args, **kwargs)
(Constructor)

source code 

Initialize the object.

Parameters:
  • client - The LDAP client connection this object belongs to.
  • dn - Distinguished Name of the object, as a string.
  • attributes - Attributes of the object. A dictionary of attribute types to list of attribute values.
Overrides: object.__init__
(inherited documentation)

journal(self, journalOperation)

source code 

Add a Modification into the list of modifications that need to be flushed to the LDAP server.

Normal callers should not use this, they should use the o['foo']=['bar', 'baz'] -style API that enforces schema, handles errors and updates the cached data.

Overrides: LDAPEntryWithClient.journal
(inherited documentation)