~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/webservice/json.py

  • Committer: Curtis Hovey
  • Date: 2011-05-27 21:53:34 UTC
  • mto: This revision was merged to the branch mainline in revision 13136.
  • Revision ID: curtis.hovey@canonical.com-20110527215334-jqlkmt52nnl4bpeh
Moved launchpad.event into registry interfaces.

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
 
"""Additional JSON serializer for the web service."""
5
 
 
6
 
__metaclass__ = type
7
 
__all__ = [
8
 
    'StrJSONSerializer',
9
 
    ]
10
 
 
11
 
 
12
 
from lazr.restful.interfaces import IJSONPublishable
13
 
from zope.interface import implements
14
 
 
15
 
 
16
 
class StrJSONSerializer:
17
 
    """Simple JSON serializer that simply str() it's context. """
18
 
    implements(IJSONPublishable)
19
 
 
20
 
    def __init__(self, context):
21
 
        self.context = context
22
 
 
23
 
    def toDataForJSON(self, media_type):
24
 
        return str(self.context)