summaryrefslogtreecommitdiff
path: root/Mailman/interfaces/manager.py
diff options
context:
space:
mode:
authorBarry Warsaw2007-07-16 23:55:49 -0400
committerBarry Warsaw2007-07-16 23:55:49 -0400
commitb8e8aa0386c2ee0fc7e90bf22fbe8fe3f222964a (patch)
tree5893e3908f89d8dd988c7844827d83e60ab6c532 /Mailman/interfaces/manager.py
parent327865eaf118f40063366acad9c7d97487e010d6 (diff)
downloadmailman-b8e8aa0386c2ee0fc7e90bf22fbe8fe3f222964a.tar.gz
mailman-b8e8aa0386c2ee0fc7e90bf22fbe8fe3f222964a.tar.zst
mailman-b8e8aa0386c2ee0fc7e90bf22fbe8fe3f222964a.zip
Diffstat (limited to 'Mailman/interfaces/manager.py')
-rw-r--r--Mailman/interfaces/manager.py57
1 files changed, 0 insertions, 57 deletions
diff --git a/Mailman/interfaces/manager.py b/Mailman/interfaces/manager.py
deleted file mode 100644
index fe22ec74d..000000000
--- a/Mailman/interfaces/manager.py
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright (C) 2007 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
-# USA.
-
-"""Generic database object manager interface."""
-
-from zope.interface import Interface, Attribute
-
-
-
-class IManaged(Interface):
- """An object managed by an IManager."""
-
- name = Attribute("""The name of the managed object.""")
-
-
-
-class IManager(Interface):
- """Create and manage profiles."""
-
- def create(name):
- """Create and return a new IManaged object.
-
- name is the unique name for this object. Raises
- ExistingManagedObjectError if an IManaged object with the given name
- already exists.
- """
-
- def get(name):
- """Return the named IManaged object.
-
- Raises NoSuchManagedObjectError if the named IManaged object does not
- exist.
- """
-
- def delete(name):
- """Delete the named IManaged object.
-
- Raises NoSuchManagedObjectError if the named IManaged object does not
- exist.
- """
-
- iterator = Attribute(
- """Return an iterator over the all the IManaged objects.""")