~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/xmlrpc/interfaces.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-23 20:29:40 UTC
  • mfrom: (14593.1.6 move-xmlrpc)
  • Revision ID: launchpad@pqm.canonical.com-20111223202940-22gcyjdqhwrjwh0b
[rs=sinzui][no-qa] Move xmlrpc to lp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2011 Canonical Ltd.  This software is licensed under the
 
2
# GNU Affero General Public License version 3 (see the file LICENSE).
 
3
 
 
4
"""Interfaces for the Launchpad application."""
 
5
 
 
6
__metaclass__ = type
 
7
 
 
8
__all__ = [
 
9
    'IPrivateApplication',
 
10
    ]
 
11
 
 
12
from zope.interface import Attribute
 
13
 
 
14
from canonical.launchpad.webapp.interfaces import ILaunchpadApplication
 
15
 
 
16
 
 
17
class IPrivateApplication(ILaunchpadApplication):
 
18
    """Launchpad private XML-RPC application root."""
 
19
 
 
20
    authserver = Attribute("""Old Authserver API end point.""")
 
21
 
 
22
    codeimportscheduler = Attribute("""Code import scheduler end point.""")
 
23
 
 
24
    codehosting = Attribute("""Codehosting end point.""")
 
25
 
 
26
    mailinglists = Attribute("""Mailing list XML-RPC end point.""")
 
27
 
 
28
    bugs = Attribute("""Launchpad Bugs XML-RPC end point.""")
 
29
 
 
30
    softwarecenteragent = Attribute(
 
31
        """Software center agent XML-RPC end point.""")
 
32
 
 
33
    featureflags = Attribute("""Feature flag information endpoint""")