Tidy up - Rename Base

Some Python class and packages need to be renamed
for a better compliance with the shared terminology
which provides a better understanding of Watcher
objects and components by every contributor.

This patchset add missing Base in class name

Partially implements: blueprint glossary-related-refactoring

Change-Id: I95a3e41fbd5fcd90a99d81c9cf278940f50c7732
This commit is contained in:
Jean-Emile DARTOIS
2015-12-07 17:46:52 +01:00
parent b1fe7a5f3d
commit 35a1f0a657
26 changed files with 45 additions and 45 deletions

View File

@@ -47,7 +47,7 @@ class BaseStrategy(object):
:param model: The name of the strategy to execute (loaded dynamically)
:type model: str
:return: A computed solution (via a placement algorithm)
:rtype: :class:`watcher.decision_engine.solution.base.Solution`
:rtype: :class:`watcher.decision_engine.solution.base.BaseSolution`
"""
@property

View File

@@ -21,7 +21,7 @@ import six
@six.add_metaclass(abc.ABCMeta)
class Selector(object):
class BaseSelector(object):
@abc.abstractmethod
def define_from_goal(self, goal_name):
raise NotImplementedError(

View File

@@ -18,7 +18,7 @@ from oslo_config import cfg
from oslo_log import log
from watcher.common.exception import WatcherException
from watcher.decision_engine.strategy.loader import StrategyLoader
from watcher.decision_engine.strategy.selector.base import Selector
from watcher.decision_engine.strategy.selector.base import BaseSelector
LOG = log.getLogger(__name__)
CONF = cfg.CONF
@@ -38,7 +38,7 @@ CONF.register_group(goals_opt_group)
CONF.register_opts(WATCHER_GOALS_OPTS, goals_opt_group)
class StrategySelector(Selector):
class StrategySelector(BaseSelector):
def __init__(self):
self.strategy_loader = StrategyLoader()