Net::Google::Calendar::Server::Auth - the base class for authentication modules.


Net-Google-Calendar-Server documentation Contained in the Net-Google-Calendar-Server distribution.

Index


Code Index:

NAME

Top

Net::Google::Calendar::Server::Auth - the base class for authentication modules.


Net-Google-Calendar-Server documentation Contained in the Net-Google-Calendar-Server distribution.

package Net::Google::Calendar::Server::Auth;

use strict;

sub new {
    my $class = shift;
    my %opts  = @_;

    return bless \%opts, $class;
}

sub validate {
    return undef;
}

sub auth {
    return 0;
}

sub magic_cookie_auth {
	return 0;
}

1;