TYPO3 API  SVNRelease
ServerRequest.php
Go to the documentation of this file.
00001 <?php
00002 /**
00003  * OpenID Server Request
00004  *
00005  * @see Auth_OpenID_Server
00006  *
00007  * PHP versions 4 and 5
00008  *
00009  * LICENSE: See the COPYING file included in this distribution.
00010  *
00011  * @package OpenID
00012  * @author JanRain, Inc. <openid@janrain.com>
00013  * @copyright 2005-2008 Janrain, Inc.
00014  * @license http://www.apache.org/licenses/LICENSE-2.0 Apache
00015  */
00016 
00017 /**
00018  * Imports
00019  */
00020 require_once "Auth/OpenID.php";
00021 
00022 /**
00023  * Object that holds the state of a request to the OpenID server
00024  *
00025  * With accessor functions to get at the internal request data.
00026  *
00027  * @see Auth_OpenID_Server
00028  * @package OpenID
00029  */
00030 class Auth_OpenID_ServerRequest {
00031     function Auth_OpenID_ServerRequest()
00032     {
00033         $this->mode = null;
00034     }
00035 }
00036 
00037 ?>