source: products/quintagroup.catalogupdater/trunk/quintagroup/catalogupdater/interfaces.py @ 1755

Last change on this file since 1755 was 1755, checked in by mylan, 14 years ago

Update utility, and interface for updating list of columns in catalog

  • Property svn:eol-style set to native
File size: 465 bytes
Line 
1from zope.interface import Interface
2
3class ICatalogUpdater(Interface):
4
5    def updateMetadata4All(catalog, columns):
6        """ Update metadata in the *catalog* for each column
7            in the *columns* list for all records.
8
9              * catalog - ZCatalog descendent catalog;
10              * columns - list of metadata names, or
11                          string with name of single
12                          metadata, which must be updated.
13        """
14
Note: See TracBrowser for help on using the repository browser.