Home | Trees | Index | Help |
|
---|
Package ldaptor :: Module interfaces :: Class IConnectedLDAPEntry |
|
object
--+ |Interface
--+ | IConnectedLDAPEntry
Method Summary | |
---|---|
List the direct children of this entry. | |
Fetch the attributes of this object from the server. | |
Lookup the referred to by dn. | |
Does entry match filter. | |
Return an LDAPEntry for the naming context that contains this object. | |
Perform an LDAP search with this object as the base. | |
List the subtree rooted at this entry, including this entry. | |
Inherited from Interface | |
(Class method) | |
Inherited from object | |
x.__init__(...) initializes x; see x.__class__.__doc__ for signature | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Instance Method Details |
---|
children(self, callback=None)List the direct children of this entry. Try to avoid using .search(), as this will be used later to implement .search() on LDAP backends.
|
fetch(self, *attributes)Fetch the attributes of this object from the server.
|
lookup(self, dn)Lookup the referred to by dn.
|
match(self, filter)Does entry match filter.
|
namingContext(self)Return an LDAPEntry for the naming context that contains this object. |
search(self, filterText=None, filterObject=None, attributes=(), scope=None, derefAliases=None, sizeLimit=0, timeLimit=0, typesOnly=0, callback=None)Perform an LDAP search with this object as the base.
|
subtree(self, callback=None)List the subtree rooted at this entry, including this entry. Try to avoid using .search(), as this will be used later to implement .search() on LDAP backends.
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Tue Aug 17 17:08:20 2004 | http://epydoc.sf.net |