Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
1 contributor

Users who have contributed to this file

112 lines (100 sloc) 3.92 KB
<?xml version="1.0" encoding="UTF-8"?>
<!--
Verb definitions for this channel.
-->
<beans xmlns="http://www.springframework.org/schema/beans"
default-lazy-init="true"
xmlns:c="http://www.springframework.org/schema/c"
xmlns:p="http://www.springframework.org/schema/p"
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.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
<!--
Import commonly used beans.
-->
<import resource="classpath:common-beans.xml"/>
<!--
Import channel-specific beans.
-->
<import resource="classpath:at_aconet/beans.xml"/>
<bean id="serializeImported" parent="mda.SerializationStage">
<property name="serializer" ref="serializer"/>
<property name="outputFile">
<bean parent="File">
<constructor-arg value="${mdx.dir}/at_aconet/imported.xml"/>
</bean>
</property>
</bean>
<bean id="importProduction" parent="mda.SimplePipeline">
<property name="stages">
<list>
<ref bean="at_aconet_productionEntities"/>
<ref bean="standardImportActions"/>
<ref bean="check_shib_regscope"/>
<ref bean="standardImportTail"/>
<ref bean="serializeImported"/>
</list>
</property>
</bean>
<bean id="importProductionRaw" parent="mda.SimplePipeline">
<property name="stages">
<list>
<ref bean="at_aconet_productionAggregate"/>
<ref bean="serializeImported"/>
</list>
</property>
</bean>
<bean id="importEdugain" parent="mda.SimplePipeline">
<property name="stages">
<list>
<ref bean="at_aconet_edugainEntities"/>
<ref bean="standardImportActions"/>
<ref bean="check_shib_regscope"/>
<ref bean="standardImportTail"/>
<ref bean="serializeImported"/>
</list>
</property>
</bean>
<bean id="importEdugainRaw" parent="mda.SimplePipeline">
<property name="stages">
<list>
<ref bean="at_aconet_edugainAggregate"/>
<ref bean="serializeImported"/>
</list>
</property>
</bean>
<bean id="verifyEdugain" parent="mda.SimplePipeline">
<property name="stages">
<list>
<ref bean="at_aconet_edugainEntities"/>
<ref bean="standardImportActions"/>
<ref bean="check_shib_regscope"/>
<bean id="checkCertificates" parent="mda.X509ValidationStage">
<property name="validators">
<list>
<!-- Error on RSA key length less than 2048 bits. -->
<bean parent="mda.X509RSAKeyLengthValidator"
p:warningBoundary="0" p:errorBoundary="2048"/>
</list>
</property>
</bean>
<!--
Remove any specific entities we know have problems that it will take
a while to resolve.
-->
<bean id="filterEntities" parent="mda.EntityFilterStage"
p:keepingEntities="false">
<property name="designatedEntities">
<set>
</set>
</property>
</bean>
<ref bean="errorTerminatingFilter"/>
</list>
</property>
</bean>
<alias alias="import" name="importEdugain"/>
<alias alias="importRaw" name="importEdugainRaw"/>
</beans>