Modules | Functions | Variables

CAS Proxy features (CAS 2.0, Proxy Granting Tickets)
[Implementation]

Modules

 PGT storage
 Callback from the CAS server
 Proxy other services

Functions

 CAS_Client::isProxy ()
 CAS_Client::getPGT ()
 CAS_Client::setPGT ($pgt)
 CAS_Client::hasPGT ()

Variables

 CAS_Client::$_proxy
 CAS_Client::$_serviceCookieJar
 CAS_Client::$_pgt

Function Documentation

CAS_Client::getPGT (  )  [private, inherited]

This method returns the Proxy Granting Ticket given by the CAS server.

Returns:
The Proxy Granting Ticket.

Definition at line 1835 of file Client.php.

Referenced by CAS_Client::isAuthenticated().

CAS_Client::hasPGT (  )  [private, inherited]

This method tells if a Proxy Granting Ticket was stored.

Returns:
TRUE if a Proxy Granting Ticket has been stored.

Definition at line 1849 of file Client.php.

CAS_Client::isProxy (  )  [inherited]

Tells if a CAS client is a CAS proxy or not

Returns:
TRUE when the CAS client is a CAs proxy, FALSE otherwise

Definition at line 1809 of file Client.php.

Referenced by CAS_Client::__construct(), CAS_Client::isAuthenticated(), CAS_Client::validateST(), and CAS_Client::wasPreviouslyAuthenticated().

CAS_Client::setPGT ( pgt  )  [private, inherited]

This method stores the Proxy Granting Ticket.

Parameters:
$pgt The Proxy Granting Ticket.

Definition at line 1842 of file Client.php.

Referenced by CAS_Client::wasPreviouslyAuthenticated().


Variable Documentation

CAS_Client::$_pgt [private, inherited]

the Proxy Grnting Ticket given by the CAS server (empty otherwise). Written by CAS_Client::setPGT(), read by CAS_Client::getPGT() and CAS_Client::hasPGT().

Definition at line 1829 of file Client.php.

CAS_Client::$_proxy [private, inherited]

A boolean telling if the client is a CAS proxy or not. Written by CAS_Client::CAS_Client(), read by CAS_Client::isProxy().

Definition at line 1797 of file Client.php.

CAS_Client::$_serviceCookieJar [private, inherited]

Handler for managing service cookies.

Definition at line 1802 of file Client.php.