Skip to content
Snippets Groups Projects
Commit a3ef57c4 authored by Olav Morken's avatar Olav Morken
Browse files

saml: Add AuthnContextClassRef filter.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2832 44740490-163a-0410-bde0-09ae8108e29a
parent 7b56a623
No related branches found
No related tags found
No related merge requests found
<?php
/**
* Filter for setting the AuthnContextClassRef in the response.
*
* @package simpleSAMLphp
* @version $Id$
*/
class sspmod_saml_lib_Auth_Process_AuthnContextClassRef extends SimpleSAML_Auth_ProcessingFilter {
/**
* The URI we should set as the AuthnContextClassRef in the login response.
*
* @var string
*/
private $authnContextClassRef;
/**
* Initialize this filter.
*
* @param array $config Configuration information about this filter.
* @param mixed $reserved For future use.
*/
public function __construct($config, $reserved) {
parent::__construct($config, $reserved);
assert('is_array($config)');
if (!isset($config['AuthnContextClassRef'])) {
throw new SimpleSAML_Error_Exception('Missing AuthnContextClassRef option in processing filter.');
}
}
}
\ No newline at end of file
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