Ignore:
Timestamp:
7 Aug 2006, 15:47:52 (18 years ago)
Author:
lregebro
Message:

Accomodation mapping storage tool.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/interfaces.py

    r274 r363  
    1616    """WAeUP_SRP
    1717    """
     18
     19class IWAeUPTable(Interface):
     20    """Tables to store object relational data
     21    """
     22
     23    def addRecord(**data):
     24        """Adds a record, with the data expressed in the data mapping.
     25       
     26        Raises an error if the uid exists.
     27        """
     28   
     29    def deleteRecord(uid):
     30        """Deletes the record specified by the uid"""
     31   
     32    def modifyRecord(uid, **data):
     33        """Modifies a record, with the data expressed in the data mapping.
     34       
     35        Raises an error if the uid does not exist.
     36        """
     37       
Note: See TracChangeset for help on using the changeset viewer.