summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-02-23 01:38:27 +0000
committerGerrit Code Review <review@openstack.org>2015-02-23 01:38:27 +0000
commit7a50071be68de2aac459e072373192b0d1905584 (patch)
tree2ab87051d19d696b44c5c0d3df4ca6dbf9eaa84d
parent1ab3c8747f3307d3fbfcf82a46f0c31a8a661654 (diff)
parent67a0c2e31ae19947067fd95a0bb4c53cfcb2b6cc (diff)
downloadpython-keystoneclient-7a50071be68de2aac459e072373192b0d1905584.tar.gz
Merge "Add default body for non-abstract empty methods"
-rw-r--r--keystoneclient/auth/base.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/keystoneclient/auth/base.py b/keystoneclient/auth/base.py
index b63d4c7..a6c54f1 100644
--- a/keystoneclient/auth/base.py
+++ b/keystoneclient/auth/base.py
@@ -78,6 +78,7 @@ class BaseAuthPlugin(object):
:return: A token to use.
:rtype: string
"""
+ return None
def get_headers(self, session, **kwargs):
"""Fetch authentication headers for message.
@@ -137,6 +138,7 @@ class BaseAuthPlugin(object):
service or None if not available.
:rtype: string
"""
+ return None
def invalidate(self):
"""Invalidate the current authentication data.