~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/librarian/interfaces.py

  • Committer: Francis J. Lacoste
  • Date: 2008-03-20 00:16:41 UTC
  • mto: (5911.3.8 p3a-librarian)
  • mto: This revision was merged to the branch mainline in revision 6163.
  • Revision ID: francis.lacoste@canonical.com-20080320001641-8rlm7x0ozypkf4u5
Add IRestrictedLibrarianClient utility.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2004-2005 Canonical Ltd.  All rights reserved.
 
1
# Copyright 2004-2008 Canonical Ltd.  All rights reserved.
2
2
 
3
3
__metaclass__ = type
4
4
 
67
67
 
68
68
 
69
69
class ILibrarianClient(IFileUploadClient, IFileDownloadClient):
70
 
    pass
 
70
    """Interface for the librarian client."""
 
71
 
 
72
 
 
73
class IRestrictedLibrarianClient(ILibrarianClient):
 
74
    """A version of the client that connects to a restricted librarian."""
71
75