Remove unused domain driver method in legacy wrapper

We have already moved the domain driver methods to the V8
interface (and hence marking them as deprecated). We can also
now remove them from V9 legacy wrapper.

This doesn't affect our support for legacy drivers (since the
wrapper still calls the underlying domain driver methods), but
they are not required in the manager-wrapper interface itself.

Partially Implements: blueprint reseller

Change-Id: Ib3f9515e79ed17e30f924c05e31bc7a4f2a95fa0
This commit is contained in:
Henry Nash 2016-03-01 17:38:51 +00:00
parent 9c176f586e
commit 5c5c101775
1 changed files with 0 additions and 21 deletions

View File

@ -1303,27 +1303,6 @@ class V9ResourceWrapperForV8Driver(ResourceDriverV9):
else:
return self.driver.get_project_by_name(project_name, domain_id)
def create_domain(self, domain_id, domain):
return self.driver.create_domain(domain_id, domain)
def list_domains(self, hints):
return self.driver.list_domains(hints)
def list_domains_from_ids(self, domain_ids):
return self.driver.list_domains_from_ids(domain_ids)
def get_domain(self, domain_id):
return self.driver.get_domain(domain_id)
def get_domain_by_name(self, domain_name):
return self.driver.get_domain_by_name(domain_name)
def update_domain(self, domain_id, domain):
return self.driver.update_domain(domain_id, domain)
def delete_domain(self, domain_id):
self.driver.delete_domain(domain_id)
def create_project(self, project_id, project):
if project['is_domain']:
new_domain = self._get_domain_from_project(project)