Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Discard UKf entities at start of eduGAIN verify flows
Browse files Browse the repository at this point in the history
See ukf/ukf-meta#118.
  • Loading branch information
iay committed May 8, 2017
1 parent f25b1c7 commit 0fa8072
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions mdx/int_edugain/verbs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@
</property>
</bean>

<!--
removeUKEntities
Filter out entities which declare themselves as registered
by the UK federation, as we don't need to verify those.
-->
<bean id="removeUKEntities" parent="mda.EntityRegistrationAuthorityFilterStage">
<property name="designatedRegistrationAuthorities">
<list>
<ref bean="uk_ukf_registrar"/>
</list>
</property>
</bean>

<bean id="importProduction" parent="mda.SimplePipeline">
<property name="stages">
<list>
Expand Down Expand Up @@ -74,6 +88,7 @@
<property name="stages">
<list>
<ref bean="int_edugain_productionEntities"/>
<ref bean="removeUKEntities"/>
<bean id="removeBlacklistedEntities" parent="mda.EntityFilterStage"
p:whitelistingEntities="false"
p:designatedEntities-ref="int_edugain_verify_blacklist"/>
Expand All @@ -93,6 +108,7 @@
<property name="stages">
<list>
<ref bean="int_edugain_productionEntities"/>
<ref bean="removeUKEntities"/>
<bean id="removeBlacklistedEntities" parent="mda.EntityFilterStage"
p:whitelistingEntities="false"
p:designatedEntities-ref="int_edugain_verify_blacklist"/>
Expand All @@ -113,6 +129,7 @@
<property name="stages">
<list>
<ref bean="int_edugain_productionEntities"/>
<ref bean="removeUKEntities"/>

<!-- remove all entities which still have errors -->
<ref bean="standardImportActions"/>
Expand Down Expand Up @@ -145,6 +162,7 @@
<property name="stages">
<list>
<ref bean="int_edugain_productionEntities"/>
<ref bean="removeUKEntities"/>

<ref bean="standardImportActions"/>
<ref bean="warningAndErrorAnnouncer"/>
Expand Down

0 comments on commit 0fa8072

Please sign in to comment.