X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=blobdiff_plain;f=application%2Flibraries%2FAuth%2FOpenID%2FServerRequest.php;fp=application%2Flibraries%2FAuth%2FOpenID%2FServerRequest.php;h=69222a5e0466851779cb9e6ea57707f6b0f7ef90;hb=0bf49c6270a4166999d6e4c9bcff3f416e2f7eb6;hp=0000000000000000000000000000000000000000;hpb=69c30ca56fdc6a4eff236902040cc04ec6eaccf2;p=living-lab-site.git diff --git a/application/libraries/Auth/OpenID/ServerRequest.php b/application/libraries/Auth/OpenID/ServerRequest.php new file mode 100644 index 0000000..69222a5 --- /dev/null +++ b/application/libraries/Auth/OpenID/ServerRequest.php @@ -0,0 +1,36 @@ + + * @copyright 2005-2008 Janrain, Inc. + * @license http://www.apache.org/licenses/LICENSE-2.0 Apache + */ + +/** + * Imports + */ +require_once "Auth/OpenID.php"; + +/** + * Object that holds the state of a request to the OpenID server + * + * With accessor functions to get at the internal request data. + * + * @see Auth_OpenID_Server + * @package OpenID + */ +class Auth_OpenID_ServerRequest { + function Auth_OpenID_ServerRequest() + { + $this->mode = null; + } +} +