NAME REST::Application - A framework for building RESTful web-applications. SYNOPSIS # MyRESTApp L<REST::Application> instance / mod_perl handler package MyRESTApp; use Apache; use Apache::Constants qw(:common); sub handler { __PACKAGE__->new(request => $r)->run(); return OK; } sub getMatchText { return Apache->uri } sub setup { my $self = shift; $self->resourceHooks( qr{/rest/parts/(\d+)} => 'get