[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Service - IServiceManagerContainer.py:1.1.2.1 __init__.py:1.1.2.1
Shane Hathaway
shane@cvs.zope.org
Thu, 31 Jan 2002 17:03:40 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Service
In directory cvs.zope.org:/tmp/cvs-serv2061
Added Files:
Tag: Zope-3x-branch
IServiceManagerContainer.py __init__.py
Log Message:
Initial IServiceManagerContainer interface.
=== Added File Zope3/lib/python/Zope/App/OFS/Service/IServiceManagerContainer.py ===
##############################################################################
#
# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE
#
##############################################################################
"""
Revision information:
$Id: IServiceManagerContainer.py,v 1.1.2.1 2002/01/31 22:03:40 shane Exp $
"""
from Interface import Interface
class IServiceManagerContainer(Interface):
def getServiceManager():
"""Returns the service manager contained in this object."""
def setServiceManager(sm):
"""Sets the service manager for this object."""
=== Added File Zope3/lib/python/Zope/App/OFS/Service/__init__.py ===
"""
"""