Merge "Add default body for non-abstract empty methods"

This commit is contained in:
Jenkins 2015-02-23 01:38:27 +00:00 committed by Gerrit Code Review
commit 195d5214b0
1 changed files with 2 additions and 0 deletions

View File

@ -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.