summaryrefslogtreecommitdiff
path: root/trove/extensions/routes/account.py
diff options
context:
space:
mode:
Diffstat (limited to 'trove/extensions/routes/account.py')
-rw-r--r--trove/extensions/routes/account.py44
1 files changed, 0 insertions, 44 deletions
diff --git a/trove/extensions/routes/account.py b/trove/extensions/routes/account.py
deleted file mode 100644
index 91852264..00000000
--- a/trove/extensions/routes/account.py
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2012 OpenStack Foundation
-# All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License"); you may
-# not use this file except in compliance with the License. You may obtain
-# a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-# License for the specific language governing permissions and limitations
-# under the License.
-
-from trove.common import extensions
-from trove.extensions.account import service
-
-
-class Account(extensions.ExtensionDescriptor):
-
- def get_name(self):
- return "Account"
-
- def get_description(self):
- return "Account information with instances"
-
- def get_alias(self):
- return "Account"
-
- def get_namespace(self):
- return "http://TBD"
-
- def get_updated(self):
- return "2012-06-07T13:25:27-06:00"
-
- def get_resources(self):
- resources = []
- resource = extensions.ResourceExtension(
- '{tenant_id}/mgmt/accounts',
- service.AccountController())
- resources.append(resource)
-
- return resources