source: WAeUP_SRP/trunk/interfaces.py @ 348

Last change on this file since 348 was 274, checked in by joachim, 18 years ago

=changes due to renaming the product

File size: 578 bytes
Line 
1"""WAeUP interfaces.
2
3interfaces and components were first introduced for the Zope3 architecture.
4However they can also be used for Zope 2.9 applications too such as CMF and CPS.
5Currently they are used by the GenericSetup tool to adapts persistent objects
6that are worth im- / exporting to their dedicated XMLAdapter.
7
8In our case, we want the state of our vogon tool to be GenericSetup aware.
9Please see the exportimport.py file for more details on the corresponding
10XMLAdapter.
11"""
12
13from zope.interface import Interface
14
15class IWAeUPTool(Interface):
16    """WAeUP_SRP
17    """
Note: See TracBrowser for help on using the repository browser.