BMaximus has asked for the wisdom of the Perl Monks concerning the following question:
Is it because of the way that Apache::Cookie is built and that what I realy need to do is just use it and forget about subclassing it? I'd like to override some of the methods. Mainly new. When I look at the code for Apache::Cookie there is realy nothing to it. If its an interface to libapreq. Where is it loading the library? How does it work?package SessionCookie; @ISA = qw( Apache::Cookie ); # file util/SessionCookie.pm use strict; use Crypt::CBC; sub new { my ($class, @args) = @_; my $self = $class->SUPER::new(); return $self; } 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Apache::Cookie
by chromatic (Archbishop) on Mar 22, 2001 at 09:15 UTC | |
by deprecated (Priest) on Mar 22, 2001 at 09:32 UTC | |
by chipmunk (Parson) on Mar 22, 2001 at 10:48 UTC | |
by BMaximus (Chaplain) on Mar 22, 2001 at 09:53 UTC |