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

aggregator: Add support for attribute authorities.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1963 44740490-163a-0410-bde0-09ae8108e29a
parent c5d8bb2a
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ class sspmod_aggregator_Aggregator { ...@@ -31,7 +31,7 @@ class sspmod_aggregator_Aggregator {
$this->aConfig = $aConfig; $this->aConfig = $aConfig;
$this->id = $id; $this->id = $id;
$this->sets = array('saml20-idp-remote', 'saml20-sp-remote', 'shib13-idp-remote', 'shib13-sp-remote'); $this->sets = array('saml20-idp-remote', 'saml20-sp-remote', 'shib13-idp-remote', 'shib13-sp-remote', 'attributeauthority-remote');
if ($this->aConfig->hasValue('set')) { if ($this->aConfig->hasValue('set')) {
$this->limitSets($this->aConfig->getString('set')); $this->limitSets($this->aConfig->getString('set'));
...@@ -54,7 +54,7 @@ class sspmod_aggregator_Aggregator { ...@@ -54,7 +54,7 @@ class sspmod_aggregator_Aggregator {
case 'shib13' : case 'shib13' :
$this->sets = array_intersect($this->sets, array('shib13-idp-remote', 'shib13-sp-remote')); break; $this->sets = array_intersect($this->sets, array('shib13-idp-remote', 'shib13-sp-remote')); break;
case 'idp' : case 'idp' :
$this->sets = array_intersect($this->sets, array('saml20-idp-remote', 'shib13-idp-remote')); break; $this->sets = array_intersect($this->sets, array('saml20-idp-remote', 'shib13-idp-remote', 'attributeauthority-remote')); break;
case 'sp' : case 'sp' :
$this->sets = array_intersect($this->sets, array('saml20-sp-remote', 'shib13-sp-remote')); break; $this->sets = array_intersect($this->sets, array('saml20-sp-remote', 'shib13-sp-remote')); break;
......
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