summaryrefslogtreecommitdiffstats
path: root/ipalib/backend.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/backend.py')
-rw-r--r--ipalib/backend.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/ipalib/backend.py b/ipalib/backend.py
index 827067f4..e286c507 100644
--- a/ipalib/backend.py
+++ b/ipalib/backend.py
@@ -95,17 +95,3 @@ class Executioner(Backend):
return result
assert isinstance(error, PublicError)
raise error
-
-
-
-class Context(plugable.Plugin):
- """
- Base class for plugable context components.
- """
-
- __proxy__ = False # Backend plugins are not wrapped in a PluginProxy
-
- def get_value(self):
- raise NotImplementedError(
- '%s.get_value()' % self.__class__.__name__
- )