about summary refs log tree commit diff
path: root/lib/MooseX/Net/API/Parser/JSON.pm
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-06-02 11:36:46 +0200
committerfranck cuny <franck@lumberjaph.net>2010-06-02 11:36:46 +0200
commitd817af5411ef2b7592e4b4f3da466e2e05fe365e (patch)
tree753f011f6bb981cc2c32a290ebdfe16bcbe5c4f6 /lib/MooseX/Net/API/Parser/JSON.pm
parentremove code, let the wrapper do the work (diff)
downloadnet-http-api-d817af5411ef2b7592e4b4f3da466e2e05fe365e.tar.gz
parser to (de)serialize content
Diffstat (limited to '')
-rw-r--r--lib/MooseX/Net/API/Parser/JSON.pm17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/MooseX/Net/API/Parser/JSON.pm b/lib/MooseX/Net/API/Parser/JSON.pm
new file mode 100644
index 0000000..4711a8a
--- /dev/null
+++ b/lib/MooseX/Net/API/Parser/JSON.pm
@@ -0,0 +1,17 @@
+package MooseX::Net::API::Parser::JSON;
+
+use JSON;
+use Moose;
+extends 'MooseX::Net::API::Parser';
+
+sub encode {
+    my ($self, $content) = @_;
+    return JSON::encode_json($content);
+}
+
+sub decode {
+    my ($self, $content) = @_;
+    return JSON::decode_json($content);
+}
+
+1;