diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-07-11 16:55:11 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-07-13 12:51:05 +0200 |
commit | 94b820af56f841ae755822a421a5c7066b7921d0 (patch) | |
tree | f563943dad3480ae40c65dbb8691a19179c4a9d3 /source4/scripting/python | |
parent | 0214b7f20cfcecd3d51aa12ae4e31cc4e095d73b (diff) | |
download | samba-94b820af56f841ae755822a421a5c7066b7921d0.tar.gz samba-94b820af56f841ae755822a421a5c7066b7921d0.tar.bz2 samba-94b820af56f841ae755822a421a5c7066b7921d0.zip |
pydsdb: added get_backlink_from_lDAPDisplayName()
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Pair-Programmed-With: Amitay Isaacs <amitay@gmail.com>
Diffstat (limited to 'source4/scripting/python')
-rw-r--r-- | source4/scripting/python/samba/samdb.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/scripting/python/samba/samdb.py b/source4/scripting/python/samba/samdb.py index f77ce1737d..a7ed1d2c39 100644 --- a/source4/scripting/python/samba/samdb.py +++ b/source4/scripting/python/samba/samdb.py @@ -521,6 +521,11 @@ accountExpires: %u '''return the lDAPDisplayName from an integer DRS attribute ID''' return dsdb._dsdb_get_lDAPDisplayName_by_attid(self, attid) + def get_backlink_from_lDAPDisplayName(self, ldap_display_name): + '''return the attribute name of the corresponding backlink from the name + of a forward link attribute. If there is no backlink return None''' + return dsdb._dsdb_get_backlink_from_lDAPDisplayName(self, ldap_display_name) + def set_ntds_settings_dn(self, ntds_settings_dn): """Set the NTDS Settings DN, as would be returned on the dsServiceName rootDSE attribute. |