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