Skip to content
Permalink
38f09607a7
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
@iay
Latest commit 38f0960 Jun 21, 2011 History
CLI now takes file path, not URI: switch back to stock CLI
CLI now takes pipeline name, not output file: rework all flows to have explicit serialization stages.
1 contributor

Users who have contributed to this file

47 lines (42 sloc) 1.71 KB
<?xml version="1.0" encoding="UTF-8"?>
<!--
Pipeline to collect UK-registered entities.
-->
<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 channel-specific beans.
-->
<import resource="beans.xml"/>
<bean id="uk.serializeCollected" class="net.shibboleth.metadata.pipeline.SerializationStage"
init-method="initialize" lazy-init="true">
<property name="id" value="uk.serializeCollected"/>
<property name="serializer" ref="serializer"/>
<property name="outputFile">
<bean class="java.io.File">
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/uk/collected.xml"/>
</bean>
</property>
</bean>
<bean id="uk.collect" class="net.shibboleth.metadata.pipeline.SimplePipeline"
init-method="initialize" lazy-init="true">
<property name="id" value="pipeline"/>
<property name="stages">
<list>
<ref bean="uk.registeredEntities"/>
<ref bean="uk.assemble"/>
<ref bean="uk.addTrustRoots"/>
<ref bean="normaliseNamespaces"/>
<ref bean="uk.serializeCollected"/>
</list>
</property>
</bean>
</beans>