diff --git a/src/python/dm/common/objects/roleType.py b/src/python/dm/common/objects/roleType.py new file mode 100755 index 0000000000000000000000000000000000000000..aa0bc67c69bec52d9a7bfe1db00d60eaa0a233d3 --- /dev/null +++ b/src/python/dm/common/objects/roleType.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +from dmObject import DmObject + +class RoleType(DmObject): + + DEFAULT_KEY_LIST = [ 'id', 'name', 'description' ] + + def __init__(self, dict): + DmObject.__init__(self, dict) + diff --git a/src/python/dm/common/objects/userSystemRole.py b/src/python/dm/common/objects/userSystemRole.py new file mode 100755 index 0000000000000000000000000000000000000000..270fc74f35f3a0c6898ffa58ccb7bbb77f2060d4 --- /dev/null +++ b/src/python/dm/common/objects/userSystemRole.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +from dmObject import DmObject + +class UserSystemRole(DmObject): + + DEFAULT_KEY_LIST = [ 'user_id', 'role_type_id' ] + + def __init__(self, dict): + DmObject.__init__(self, dict) +