Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Jun 22, 2011
1 parent 98165d7 commit eeffb0c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1109,6 +1109,10 @@
<CHANNEL.import channel="ca_caf"/>
</target>

<target name="flow.ch_switchaai.import">
<CHANNEL.import channel="ch_switchaai"/>
</target>

<target name="flow.cz_eduid.import">
<CHANNEL.import channel="cz_eduid"/>
</target>
Expand All @@ -1133,10 +1137,6 @@
<CHANNEL.import channel="si_arnes"/>
</target>

<target name="flow.switch.import">
<CHANNEL.import channel="switch"/>
</target>

<target name="flow.uk_eduserv.import">
<CHANNEL.import channel="uk_eduserv"/>
</target>
Expand Down
4 changes: 2 additions & 2 deletions mdx/switch/beans.xml → mdx/ch_switchaai/beans.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Common beans for SWITCH operations.
Common beans for this channel.
-->
<beans xmlns="http://www.springframework.org/schema/beans" 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">
Expand All @@ -21,7 +21,7 @@
<bean id="switchSigningCertificate" class="net.shibboleth.ext.spring.factory.X509CertificateFactoryBean">
<property name="certificateFile">
<bean class="java.io.File">
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/switch/metadata.crt"/>
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/ch_switchaai/metadata.crt"/>
</bean>
</property>
</bean>
Expand Down
16 changes: 8 additions & 8 deletions mdx/switch/import.xml → mdx/ch_switchaai/import.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Import pipeline for metadata from SWITCH.
Import pipeline for this channel.
-->
<beans xmlns="http://www.springframework.org/schema/beans" 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">
Expand All @@ -11,24 +11,24 @@
<import resource="../common-beans.xml"/>

<!--
Import SWITCH-specific beans.
Import channel-specific beans.
-->
<import resource="beans.xml"/>

<bean id="switch_serializeImported" class="net.shibboleth.metadata.pipeline.SerializationStage"
<bean id="ch_switchaai_serializeImported" class="net.shibboleth.metadata.pipeline.SerializationStage"
init-method="initialize" lazy-init="true">
<property name="id" value="switch_serializeImported"/>
<property name="id" value="ch_switchaai_serializeImported"/>
<property name="serializer" ref="serializer"/>
<property name="outputFile">
<bean class="java.io.File">
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/switch/imported.xml"/>
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/ch_switchaai/imported.xml"/>
</bean>
</property>
</bean>

<bean id="switch_import" class="net.shibboleth.metadata.pipeline.SimplePipeline"
<bean id="ch_switchaai_import" class="net.shibboleth.metadata.pipeline.SimplePipeline"
init-method="initialize" lazy-init="true">
<property name="id" value="switch_import"/>
<property name="id" value="ch_switchaai_import"/>
<property name="stages">
<list>
<ref bean="fetchSwitchExportAggregate"/>
Expand All @@ -43,7 +43,7 @@

<ref bean="standardImportTail"/>

<ref bean="switch_serializeImported"/>
<ref bean="ch_switchaai_serializeImported"/>
</list>
</property>
</bean>
Expand Down
File renamed without changes.

0 comments on commit eeffb0c

Please sign in to comment.