1
# Copyright 2011 Canonical Ltd. This software is licensed under the
2
# GNU Affero General Public License version 3 (see the file LICENSE).
4
"""Additional JSON serializer for the web service."""
12
from lazr.restful.interfaces import IJSONPublishable
13
from zope.interface import implements
16
class StrJSONSerializer:
17
"""Simple JSON serializer that simply str() it's context. """
18
implements(IJSONPublishable)
20
def __init__(self, context):
21
self.context = context
23
def toDataForJSON(self, media_type):
24
return str(self.context)