source: products/quintagroup.gauth/trunk/quintagroup/gauth/interfaces.py @ 2613

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

Register IGAuthUtility to LocalSiteManager? on installation and bound to configlet; some refactoring and updates

  • Property svn:eol-style set to native
File size: 335 bytes
Line 
1from zope.interface import Interface, Attribute
2
3class IGAuthUtility(Interface):
4    """ Utility, which operate with authentication data,
5        stored in Google Data configlet.
6    """
7
8    email = Attribute("email", "Get GDocs portal account email.")
9
10    password = Attribute("password", "Get GDocs portal account password.")
11   
Note: See TracBrowser for help on using the repository browser.