summaryrefslogtreecommitdiffstats
path: root/ipalib/backend.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-01-23 15:53:45 -0700
committerRob Crittenden <rcritten@redhat.com>2009-02-03 15:29:03 -0500
commit0cfb0e191ad878d1b22e98ce484bf3048f7138c2 (patch)
treeba468c284cd37e89f649d6de31c58000bcca64dc /ipalib/backend.py
parentf7375bb6090f32c3feb3d71e196ed01ee19fecc8 (diff)
downloadfreeipa-0cfb0e191ad878d1b22e98ce484bf3048f7138c2.tar.gz
freeipa-0cfb0e191ad878d1b22e98ce484bf3048f7138c2.tar.xz
freeipa-0cfb0e191ad878d1b22e98ce484bf3048f7138c2.zip
Removed the depreciated Context and LazyContext classes
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__
- )