| Apache2-Controller documentation | view source | Contained in the Apache2-Controller distribution. |
Apache2::Controller::NonResponseRequest - internal base class w/ apreq for non-response handlers in Apache2::Controller framework
Version 1.000.111
This is an INTERNAL base class and you don't need to use it.
package Apache2::Controller; use base Apache2::Controller::NonResponseRequest; # no need to define handler() or new() 1;
This is like Apache2::Controller::NonResponseBase except
that it creates the Apache2::Request object and makes $self
an inheriting subclass of it. So using this as a base, there is
no need to dereference $self->{r} to get at the request.
It is all $self just like within Apache2::Controller
controller modules.
You should not use this module for anything that you're doing.
new() creates an object of the child class using
Apache2::Controller::NonResponseBase and then assigns the
Apache2::Request object to $self->{r}.
Apache2::Controller::NonResponseBase
Apache2::Controller::Auth::OpenID (uses this as base)
Mark Hedges, <hedges at formdata.biz>
Copyright 2008-2010 Mark Hedges, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
This software is provided as-is, with no warranty and no guarantee of fitness for any particular purpose.
| Apache2-Controller documentation | view source | Contained in the Apache2-Controller distribution. |