AuthCAS: declare authLogout and authFinish methods

This commit is contained in:
Clément Oudot 2010-08-30 08:38:53 +00:00
parent e3010de6e5
commit 8e7c112181

View File

@ -103,7 +103,7 @@ sub extractFormInfo {
return PE_ERROR;
}
else {
$self->lmLog( "CAS: user " . $self->{user} . "found", 'debug' );
$self->lmLog( "CAS: user " . $self->{user} . " found", 'debug' );
}
# Request proxy tickets for proxied services
@ -164,6 +164,24 @@ sub authenticate {
PE_OK;
}
## @apmethod int authFinish()
# Does nothing.
# @return Lemonldap::NG::Portal constant
sub authFinish {
PE_OK;
}
## @apmethod int authLogout()
# Call CAS server logout URL
# @return Lemonldap::NG::Portal constant
sub authLogout {
my $self = shift;
# TODO
PE_OK;
}
1;
__END__