~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/interfaces/launchpad.py

  • Committer: Curtis Hovey
  • Date: 2011-12-23 16:13:09 UTC
  • mfrom: (14593.1.5 move-xmlrpc)
  • mto: This revision was merged to the branch mainline in revision 14599.
  • Revision ID: curtis.hovey@canonical.com-20111223161309-1qxb97c0lx9yus5z
Merged xmlrpc move.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
    'IHasMugshot',
17
17
    'ILaunchpadCelebrities',
18
18
    'ILaunchpadUsage',
19
 
    'IPrivateApplication',
20
19
    'IPrivacy',
21
20
    'IServiceUsage',
22
21
    ]
32
31
    )
33
32
 
34
33
from canonical.launchpad import _
35
 
from canonical.launchpad.webapp.interfaces import ILaunchpadApplication
36
34
from lp.app.enums import ServiceUsage
37
35
 
38
36
 
132
130
        required=True)
133
131
 
134
132
 
135
 
class IPrivateApplication(ILaunchpadApplication):
136
 
    """Launchpad private XML-RPC application root."""
137
 
 
138
 
    authserver = Attribute("""Old Authserver API end point.""")
139
 
 
140
 
    codeimportscheduler = Attribute("""Code import scheduler end point.""")
141
 
 
142
 
    codehosting = Attribute("""Codehosting end point.""")
143
 
 
144
 
    mailinglists = Attribute("""Mailing list XML-RPC end point.""")
145
 
 
146
 
    bugs = Attribute("""Launchpad Bugs XML-RPC end point.""")
147
 
 
148
 
    softwarecenteragent = Attribute(
149
 
        """Software center agent XML-RPC end point.""")
150
 
 
151
 
    featureflags = Attribute("""Feature flag information endpoint""")
152
 
 
153
 
 
154
133
class IHasIcon(Interface):
155
134
    """An object that can have a custom icon."""
156
135