summaryrefslogtreecommitdiff
path: root/keystoneclient/auth/identity/v3/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'keystoneclient/auth/identity/v3/base.py')
-rw-r--r--keystoneclient/auth/identity/v3/base.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/keystoneclient/auth/identity/v3/base.py b/keystoneclient/auth/identity/v3/base.py
index 9d1f562..784bd96 100644
--- a/keystoneclient/auth/identity/v3/base.py
+++ b/keystoneclient/auth/identity/v3/base.py
@@ -59,7 +59,7 @@ class BaseAuth(base.BaseIdentityPlugin):
include_catalog=True):
super(BaseAuth, self).__init__(auth_url=auth_url,
reauthenticate=reauthenticate)
- self.trust_id = trust_id
+ self._trust_id = trust_id
self.domain_id = domain_id
self.domain_name = domain_name
self.project_id = project_id
@@ -69,6 +69,16 @@ class BaseAuth(base.BaseIdentityPlugin):
self.include_catalog = include_catalog
@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
+
+ @property
def token_url(self):
"""The full URL where we will send authentication data."""
return '%s/auth/tokens' % self.auth_url.rstrip('/')