1
# Copyright 2011 Canonical Ltd. This software is licensed under the
2
# GNU Affero General Public License version 3 (see the file LICENSE).
4
"""Interfaces for the Launchpad application."""
12
from zope.interface import Attribute
14
from canonical.launchpad.webapp.interfaces import ILaunchpadApplication
17
class IPrivateApplication(ILaunchpadApplication):
18
"""Launchpad private XML-RPC application root."""
20
authserver = Attribute("""Old Authserver API end point.""")
22
codeimportscheduler = Attribute("""Code import scheduler end point.""")
24
codehosting = Attribute("""Codehosting end point.""")
26
mailinglists = Attribute("""Mailing list XML-RPC end point.""")
28
bugs = Attribute("""Launchpad Bugs XML-RPC end point.""")
30
softwarecenteragent = Attribute(
31
"""Software center agent XML-RPC end point.""")
33
featureflags = Attribute("""Feature flag information endpoint""")