X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FResponse.pm;h=1b22e6eee3dd7071e700d32207a25b5affbe8df1;hb=523d44ecdd184a0a56c8094c60fe545098e06cff;hp=d22dc3c98131f22717f33d64cc9f4327c911ad2d;hpb=b22c66686d892bba76a150f727561f8778f3ea72;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Response.pm b/lib/Catalyst/Response.pm index d22dc3c..1b22e6e 100644 --- a/lib/Catalyst/Response.pm +++ b/lib/Catalyst/Response.pm @@ -5,6 +5,11 @@ use base 'Class::Accessor::Fast'; __PACKAGE__->mk_accessors(qw/cookies headers output redirect status/); +sub content_encoding { shift->headers->content_encoding(@_) } +sub content_length { shift->headers->content_length(@_) } +sub content_type { shift->headers->content_type(@_) } +sub header { shift->headers->header(@_) } + =head1 NAME Catalyst::Response - Catalyst Response Class