
Catalyst::Plugin::AtomPP - Dispatch AtomPP methods with Catalyst.

use Catalyst qw/AtomPP/;
sub entry : Local {
my ($self, $c) = @_;
$c->atom; # dispatch AtomPP methods.
}
sub create_entry : Remote {
my ($self, $c, $entry) = @_;
# $entry is XML::Atom Object from Request content
...
}
sub retrieve_entry : Remote {
my ($self, $c) = @_;
...
}
sub update_entry : Remote {
...
}
sub delete_entry : Remote {
...
}

This plugin allows you to dispatch AtomPP methods with Catalyst.
Require other authentication plugin, if needed. (Authentication::CDBI::Basic, WSSE, or so)


Catalyst, Catalyst::Plugin::XMLRPC.

Daisuke Murase, <typester@cpan.org>

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.