diff options
| author | Dolph Mathews <dolph.mathews@gmail.com> | 2011-08-12 17:47:00 -0500 |
|---|---|---|
| committer | Dolph Mathews <dolph.mathews@gmail.com> | 2011-08-12 22:11:09 -0500 |
| commit | f9abcf31ec4c4911c48aa6ce87625fd2f1bdf0fb (patch) | |
| tree | 1f322dc4cb2ada226542b0505a836da06f9e9771 | |
| parent | 32eb42a6bf3689fa6986b648f2b91fe927b45c49 (diff) | |
Added check_password to abstract backend user API
Change-Id: Ibb05f7842ae6e2b1f42c9956aee20a72472c3cef
| -rwxr-xr-x | keystone/backends/api.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/keystone/backends/api.py b/keystone/backends/api.py index 1ab5d983..bcb15295 100755 --- a/keystone/backends/api.py +++ b/keystone/backends/api.py @@ -100,6 +100,9 @@ class BaseUserAPI(object): def user_groups_get_all(self, user_id): raise NotImplementedError + def check_password(self, user, password): + raise NotImplementedError + class BaseTokenAPI(object): def create(self, values): |
