14560.2.24
by Curtis Hovey
Moved IWebServiceApplication to lp.services.webservice. |
1 |
# Copyright 2009-2011 Canonical Ltd. This software is licensed under the
|
2 |
# GNU Affero General Public License version 3 (see the file LICENSE).
|
|
3 |
"""Interfaces pertaining to the launchpad application.
|
|
4 |
||
5 |
Note that these are not interfaces to application content objects.
|
|
6 |
"""
|
|
7 |
__metaclass__ = type |
|
8 |
||
9 |
from lazr.restful.interfaces import IServiceRootResource |
|
14600.2.2
by Curtis Hovey
Moved webapp to lp.services. |
10 |
from lp.services.webapp.interfaces import ILaunchpadApplication |
14560.2.24
by Curtis Hovey
Moved IWebServiceApplication to lp.services.webservice. |
11 |
|
12 |
||
13 |
__all__ = [ |
|
14 |
'IWebServiceApplication', |
|
15 |
]
|
|
16 |
||
17 |
||
18 |
class IWebServiceApplication(ILaunchpadApplication, IServiceRootResource): |
|
19 |
"""Launchpad web service application root."""
|