Sympa documentation licensed under GPL
Sympa::Request::Handler - Base class of request handler classes
package Sympa::Request::Handler::foo;
use base qw(Sympa::Request::Handler);
use constant _action_regexp => qr{reject|request_auth|do_it}i;
use constant _action_scenario => 'review';
use constant _context_class => 'Sympa::List';
sub _twist {
...
}
1;
Sympa::Request::Handler is the base class of subclasses to process instance of Sympa::Request.
TBD.
_action_regexp ( )
Instance method,
mandatory if _action_scenario() returns true value.
Returns a regexp matching available scenario results.
Note that i
modifier is necessary.
_action_scenario ( )
Instance method,
mandatory.
Returns the name of scenario to authorize the request under given context.
If authorization is not required, returns undef
.
_context_class ( )
Instance method. Returns the class name of context under which the request will be executed, Sympa::List etc. By default, returns robot context.
_owner_action ( )
Instance method.
Returns name of action to be stored in spool when scenario returns owner
.
By default, returns undef
.
_twist ( $request )
Instance method, mandatory. See “_twist” in Sympa::Spindle.
Sympa::Request, Sympa::Spindle.
Sympa::Request::Handler appeared on Sympa 6.2.15.
The content of this page is automatically generated from the source distribution of Sympa. For details about this document see original source file.
Theme originally designed by orderedlist