Removed dead code

Change-Id: I41e23bfcc4fbe291af27448dc00cdce85b717111
This commit is contained in:
Dolph Mathews 2012-08-23 14:16:48 -05:00
parent 84da6be591
commit 6b04662844
1 changed files with 0 additions and 8 deletions

View File

@ -578,14 +578,6 @@ class TenantApi(common_ldap.BaseLdap, ApiShimMixin):
class UserRoleAssociation(object):
"""Role Grant model."""
hints = {
'contract_attributes': ['id', 'role_id', 'user_id', 'tenant_id'],
'types': [('user_id', basestring), ('tenant_id', basestring)],
'maps': {'userId': 'user_id',
'roleId': 'role_id',
'tenantId': 'tenant_id'}
}
def __init__(self, user_id=None, role_id=None, tenant_id=None,
*args, **kw):
self.user_id = str(user_id)