-
Olav Morken authored
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1605 44740490-163a-0410-bde0-09ae8108e29a
Olav Morken authoredgit-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1605 44740490-163a-0410-bde0-09ae8108e29a
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Request.php 398 B
<?php
/**
* Base class for all SAML 2 request messages.
*
* Implements samlp:RequestAbstractType. All of the elements in that type is
* stored in the SAML2_Message class, and this class is therefore empty. It
* is included mainly to make it easy to separate requests from responses.
*
* @package simpleSAMLphp
* @version $Id$
*/
abstract class SAML2_Request extends SAML2_Message {
}
?>