Skip to content
Snippets Groups Projects
Commit 20322bb5 authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

Adding some headers in files, and setting the ID keyword in svn

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@201 44740490-163a-0410-bde0-09ae8108e29a
parent 96ad538d
No related branches found
No related tags found
No related merge requests found
<?php
/**
* SimpleSAMLphp
*
* PHP versions 4 and 5
*
* LICENSE: See the COPYING file included in this distribution.
*
* @author Andreas kre Solberg, UNINETT AS. <andreas.solberg@uninett.no>
*/
require_once('SimpleSAML/Configuration.php');
require_once('SimpleSAML/Session.php');
......@@ -19,9 +8,14 @@ require_once('SimpleSAML/Metadata/MetaDataStorageHandler.php');
require_once('xmlseclibs.php');
/**
* Configuration of SimpleSAMLphp
* Abstract class of an Authentication response
*
* @author Andreas kre Solberg, UNINETT AS. <andreas.solberg@uninett.no>
* @package simpleSAMLphp
* @version $Id$
* @abstract
*/
abstract class SimpleSAML_XML_AuthnResponse {
abstract class SimpleSAML_XML_AuthnResponse {
private $configuration = null;
private $metadata = 'default.php';
......
<?php
/**
* SimpleSAMLphp
*
* PHP versions 4 and 5
*
* LICENSE: See the COPYING file included in this distribution.
*
* @author Andreas Åkre Solberg, UNINETT AS. <andreas.solberg@uninett.no>
*/
require_once('SimpleSAML/Configuration.php');
require_once('SimpleSAML/Session.php');
require_once('SimpleSAML/Utilities.php');
......@@ -20,7 +9,12 @@ require_once('SimpleSAML/XML/AuthnResponse.php');
require_once('xmlseclibs.php');
/**
* Configuration of SimpleSAMLphp
* An SAML 2.0 Authentication Response
*
* @author Andreas Åkre Solberg, UNINETT AS. <andreas.solberg@uninett.no>
* @package simpleSAMLphp
* @version $Id$
* @abstract
*/
class SimpleSAML_XML_SAML20_AuthnResponse extends SimpleSAML_XML_AuthnResponse {
......
<?php
/**
* SimpleSAMLphp
*
* LICENSE: See the COPYING file included in this distribution.
*
* @author Andreas kre Solberg, UNINETT AS. <andreas.solberg@uninett.no>
*/
require_once('SimpleSAML/Configuration.php');
require_once('SimpleSAML/Session.php');
......@@ -18,7 +9,12 @@ require_once('SimpleSAML/XML/AuthnResponse.php');
require_once('xmlseclibs.php');
/**
* Configuration of SimpleSAMLphp
* A Shibboleth 1.3 authentication response.
*
* @author Andreas kre Solberg, UNINETT AS. <andreas.solberg@uninett.no>
* @package simpleSAMLphp
* @version $Id$
* @abstract
*/
class SimpleSAML_XML_Shib13_AuthnResponse extends SimpleSAML_XML_AuthnResponse {
......
......@@ -11,6 +11,18 @@ require_once('SimpleSAML/XML/SAML20/AuthnRequest.php');
require_once('SimpleSAML/Bindings/SAML20/HTTPPost.php');
require_once('SimpleSAML/XHTML/Template.php');
/**
* This SAML 2.0 endpoint is the endpoint at the SAML 2.0 SP that takes an Authentication Response
* as HTTP-POST in, and parses and processes it before it redirects the use to the RelayState.
*
* @author Andreas kre Solberg, UNINETT AS. <andreas.solberg@uninett.no>
* @package simpleSAMLphp
* @version $Id$
* @abstract
*/
/* Get the session object for the user. Create a new session if no session
* exists for this user.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment