1<?php
2/**
3 * OpenID Server Request
4 *
5 * @see Auth_OpenID_Server
6 *
7 * PHP versions 4 and 5
8 *
9 * LICENSE: See the COPYING file included in this distribution.
10 *
11 * @package OpenID
12 * @author JanRain, Inc. <openid@janrain.com>
13 * @copyright 2005-2008 Janrain, Inc.
14 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache
15 */
16
17/**
18 * Imports
19 */
20require_once "Auth/OpenID.php";
21
22/**
23 * Object that holds the state of a request to the OpenID server
24 *
25 * With accessor functions to get at the internal request data.
26 *
27 * @see Auth_OpenID_Server
28 * @package OpenID
29 */
30class Auth_OpenID_ServerRequest {
31    function Auth_OpenID_ServerRequest()
32    {
33        $this->mode = null;
34    }
35}
36
37