summaryrefslogtreecommitdiff
path: root/keystoneclient/auth/identity/generic/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'keystoneclient/auth/identity/generic/base.py')
-rw-r--r--keystoneclient/auth/identity/generic/base.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/keystoneclient/auth/identity/generic/base.py b/keystoneclient/auth/identity/generic/base.py
index 0b87d06..d366707 100644
--- a/keystoneclient/auth/identity/generic/base.py
+++ b/keystoneclient/auth/identity/generic/base.py
@@ -72,6 +72,16 @@ class BaseGenericPlugin(base.BaseIdentityPlugin):
self._plugin = None
+ @property
+ def trust_id(self):
+ # Override to remove deprecation.
+ return self._trust_id
+
+ @trust_id.setter
+ def trust_id(self, value):
+ # Override to remove deprecation.
+ self._trust_id = value
+
@abc.abstractmethod
def create_plugin(self, session, version, url, raw_status=None):
"""Create a plugin from the given paramters.