Home | Trees | Indices | Help |
|
---|
|
zope.interface.Interface --+ | IEditableLDAPEntry
Interface definition for editable LDAP entries.
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|
|||
_InterfaceClass__attrs =
|
|||
__bases__ =
|
|||
__identifier__ =
|
|||
__iro__ =
|
|||
__name__ =
|
|||
__sro__ =
|
|||
_implied =
|
|||
dependents = <WeakKeyDictionary at 25273608>
|
|||
Inherited from |
|
Set values of an attribute. Please use lists. Do not modify the lists in place, that's not supported _yet_. >>> o=LDAPEntry(client=ldapclient.LDAPClient(), ... dn='cn=foo,dc=example,dc=com', ... attributes={'anAttribute': ['itsValue']}) >>> o['anAttribute']=['foo', 'bar'] >>> o['anAttribute'] ['bar', 'foo'] |
Delete all values of an attribute. >>> o=LDAPEntry(client=ldapclient.LDAPClient(), ... dn='cn=foo,dc=example,dc=com', ... attributes={ ... 'anAttribute': ['itsValue', 'secondValue'], ... 'another': ['moreValues'], ... }) >>> del o['anAttribute'] >>> o LDAPEntry(dn='cn=foo,dc=example,dc=com', attributes={'another': ['moreValues']}) |
Send all pending changes to the LDAP server.
|
Move the object to a new DN.
|
Delete this object from the LDAP server.
|
Set all applicable passwords for this object.
|
|
_InterfaceClass__attrs
|
__iro__
|
__sro__
|
_implied
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Sep 2 15:51:51 2013 | http://epydoc.sourceforge.net |