diff options
author | Nicolas Clapies <nclapies@entrouvert.com> | 2004-07-21 12:44:33 +0000 |
---|---|---|
committer | Nicolas Clapies <nclapies@entrouvert.com> | 2004-07-21 12:44:33 +0000 |
commit | 1d7b3791454b797bfd8d5dc72600b6932a16552d (patch) | |
tree | 4081f2bb056518fbe6974c9df7f68ba8e7cb7041 /python/examples/user.py | |
parent | ddf6dd5516e6dbf778968c7fd97ba094c115d36b (diff) | |
download | lasso-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.py | 4 |
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" |