Sync base identity Driver defs with SQL driver

Change-Id: Id20c1167dbc718ba4bd8cb0df88edd2bc922c3c6
This commit is contained in:
Yuriy Taraday 2013-01-15 23:31:11 +04:00
parent f237a67026
commit 36c3b2e29f
1 changed files with 2 additions and 2 deletions

View File

@ -335,7 +335,7 @@ class Driver(object):
"""
raise exception.NotImplemented()
def list_users_in_group(self, group_id, group):
def list_users_in_group(self, group_id):
"""List all users in a group.
:returns: a list of user_refs or an empty list.
@ -501,7 +501,7 @@ class Driver(object):
"""
raise exception.NotImplemented()
def list_groups_for_user(self, user_id, user):
def list_groups_for_user(self, user_id):
"""List all groups a user is in
:returns: a list of group_refs or an empty list.