Catalyst::Authentication::Realm::AuthTkt - shim for Apache::AuthTkt


Catalyst-Authentication-AuthTkt documentation Contained in the Catalyst-Authentication-AuthTkt distribution.

Index


Code Index:

NAME

Top

Catalyst::Authentication::Realm::AuthTkt - shim for Apache::AuthTkt

DESCRIPTION

Top

This module implements the Catalyst::Plugin::Authentication API for Apache::AuthTkt. See Catalyst::Authentication::AuthTkt for complete user documentation.

METHODS

Top

remove_persisted_user( context )

This method overrides the base class in order to call expire_ticket() on the Store::AuthTkt object.

AUTHOR

Top

Peter Karman, <karman at cpan dot org>

BUGS

Top

Please report any bugs or feature requests to bug-catalyst-authentication-authtkt at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-Authentication-AuthTkt. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Catalyst::Authentication::AuthTkt

You can also look for information at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Catalyst-Authentication-AuthTkt

* CPAN Ratings

http://cpanratings.perl.org/d/Catalyst-Authentication-AuthTkt

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Catalyst-Authentication-AuthTkt

* Search CPAN

http://search.cpan.org/dist/Catalyst-Authentication-AuthTkt

ACKNOWLEDGEMENTS

Top

The Minnesota Supercomputing Institute http://www.msi.umn.edu/ sponsored the development of this software.

COPYRIGHT & LICENSE

Top


Catalyst-Authentication-AuthTkt documentation Contained in the Catalyst-Authentication-AuthTkt distribution.
package Catalyst::Authentication::Realm::AuthTkt;
use strict;
use warnings;
use base qw( Catalyst::Authentication::Realm );
use Carp;

our $VERSION = '0.11';

sub remove_persisted_user {
    my ( $self, $c ) = @_;
    $self->SUPER::remove_persisted_user($c);
    $self->store->expire_ticket($c);
}

1;

__END__