summaryrefslogtreecommitdiffstats
path: root/keystone/identity/core.py
diff options
context:
space:
mode:
authortermie <github@anarkystic.com>2012-01-18 20:06:27 -0800
committertermie <github@anarkystic.com>2012-01-18 20:06:27 -0800
commit909012a63e5761b4ff09d2c63a7a0493f7daffa6 (patch)
tree5fd6480d77f3fa3c8d1aac1e4536910821d33c2e /keystone/identity/core.py
parentf0e3e7f123c24f4441de14be34e5b9fd307354aa (diff)
downloadkeystone-909012a63e5761b4ff09d2c63a7a0493f7daffa6.tar.gz
keystone-909012a63e5761b4ff09d2c63a7a0493f7daffa6.tar.xz
keystone-909012a63e5761b4ff09d2c63a7a0493f7daffa6.zip
establish basic structure
Diffstat (limited to 'keystone/identity/core.py')
-rw-r--r--keystone/identity/core.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/keystone/identity/core.py b/keystone/identity/core.py
new file mode 100644
index 00000000..5f25fbf4
--- /dev/null
+++ b/keystone/identity/core.py
@@ -0,0 +1,24 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+"""Main entry point into the Identity service."""
+
+from keystone import config
+from keystone import manager
+
+
+CONF = config.CONF
+
+
+class Manager(manager.Manager):
+ """Default pivot point for the Identity backend.
+
+ See :mod:`keystone.manager.Manager` for more details on how this
+ dynamically calls the backend.
+
+ See :mod:`keystone.backends.base.Identity` for more details on the
+ interface provided by backends.
+
+ """
+
+ def __init__(self):
+ super(Manager, self).__init__(CONF.identity.driver)