-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support both production and test aggregates from eduGAIN.
- Loading branch information
Showing
4 changed files
with
63 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!-- | ||
| Import pipeline for test metadata from eduGAIN. | ||
| --> | ||
| <beans xmlns="http://www.springframework.org/schema/beans" | ||
| xmlns:util="http://www.springframework.org/schema/util" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation=" | ||
| http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd | ||
| http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd"> | ||
|
|
||
| <!-- | ||
| Import commonly used beans. | ||
| --> | ||
| <import resource="../common-beans.xml"/> | ||
|
|
||
| <!-- | ||
| Import eduGAIN-specific beans. | ||
| --> | ||
| <import resource="edugain-beans.xml"/> | ||
|
|
||
| <bean id="pipeline" class="net.shibboleth.metadata.pipeline.SimplePipeline"> | ||
| <property name="id" value="pipeline"/> | ||
| <property name="stages"> | ||
| <list> | ||
| <ref bean="fetchEduGainTestAggregate"/> | ||
| <ref bean="checkEdugainSignature"/> | ||
| <ref bean="errorAnnouncingFilter"/><!-- should be fatal --> | ||
| <ref bean="disassemble"/> | ||
|
|
||
| <ref bean="standardImportActions"/> | ||
|
|
||
| <ref bean="standardImportTail"/> | ||
| </list> | ||
| </property> | ||
| </bean> | ||
|
|
||
| </beans> |