summaryrefslogtreecommitdiffstats
path: root/python/examples/user.py
diff options
context:
space:
mode:
authorNicolas Clapies <nclapies@entrouvert.com>2004-07-21 12:44:33 +0000
committerNicolas Clapies <nclapies@entrouvert.com>2004-07-21 12:44:33 +0000
commit1d7b3791454b797bfd8d5dc72600b6932a16552d (patch)
tree4081f2bb056518fbe6974c9df7f68ba8e7cb7041 /python/examples/user.py
parentddf6dd5516e6dbf778968c7fd97ba094c115d36b (diff)
downloadlasso-1d7b3791454b797bfd8d5dc72600b6932a16552d.tar.gz
lasso-1d7b3791454b797bfd8d5dc72600b6932a16552d.tar.xz
lasso-1d7b3791454b797bfd8d5dc72600b6932a16552d.zip
add list of identity provider id in user environ
Diffstat (limited to 'python/examples/user.py')
-rw-r--r--python/examples/user.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/examples/user.py b/python/examples/user.py
index ee9f8cfe..6fd5de1a 100644
--- a/python/examples/user.py
+++ b/python/examples/user.py
@@ -18,7 +18,7 @@ user = lasso.User.new_from_dump(user_dump);
print "Dump of user environ : %s\n" % user.dump()
-next_provider_id = user.get_next_providerID()
+next_provider_id = user.get_next_assertion_remote_providerID()
while(next_provider_id):
print "Next provider id : ", next_provider_id
assertion = user.get_assertion(next_provider_id)
@@ -26,7 +26,7 @@ while(next_provider_id):
print "Remove his assertion from user ..."
user.remove_assertion(next_provider_id)
- next_provider_id = user.get_next_providerID()
+ next_provider_id = user.get_next_assertion_remote_providerID()
print "All assertions deleted\n"