Skip to content

Commit

Permalink
Rename edugain channel to int_edugain.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Jun 22, 2011
1 parent eeffb0c commit 736e552
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
8 changes: 4 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1121,12 +1121,12 @@
<CHANNEL.import channel="ie_edugate"/>
</target>

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

<target name="flow.edugain.test.import">
<CHANNEL.do channel="edugain" verb="testImport"/>
<target name="flow.int_edugain.testImport">
<CHANNEL.do channel="int_edugain" verb="testImport"/>
</target>

<target name="flow.se_swamid.import">
Expand Down
4 changes: 2 additions & 2 deletions mdx/edugain/beans.xml → mdx/int_edugain/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 eduGAIN operations.
Common beans for this channel.
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:util="http://www.springframework.org/schema/util"
Expand Down Expand Up @@ -37,7 +37,7 @@
<bean id="edugainSigningCertificate" class="net.shibboleth.ext.spring.factory.X509CertificateFactoryBean">
<property name="certificateFile">
<bean class="java.io.File">
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/edugain/edugain-signer.crt"/>
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/int_edugain/edugain-signer.crt"/>
</bean>
</property>
</bean>
Expand Down
File renamed without changes.
16 changes: 8 additions & 8 deletions mdx/edugain/import.xml → mdx/int_edugain/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 eduGAIN.
Import pipeline for this channel.
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:util="http://www.springframework.org/schema/util"
Expand All @@ -15,24 +15,24 @@
<import resource="../common-beans.xml"/>

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

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

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

<ref bean="standardImportTail"/>

<ref bean="edugain_serializeImported"/>
<ref bean="int_edugain_serializeImported"/>
</list>
</property>
</bean>
Expand Down
16 changes: 8 additions & 8 deletions mdx/edugain/testImport.xml → mdx/int_edugain/testImport.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 test metadata from eduGAIN.
Import pipeline for test metadata for this channel.
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:util="http://www.springframework.org/schema/util"
Expand All @@ -15,24 +15,24 @@
<import resource="../common-beans.xml"/>

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

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

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

<ref bean="standardImportTail"/>

<ref bean="edugain_serializeTestImported"/>
<ref bean="int_edugain_serializeTestImported"/>
</list>
</property>
</bean>
Expand Down

0 comments on commit 736e552

Please sign in to comment.