Skip to content

Commit

Permalink
Rename swamid channel to se_swamid.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Jun 22, 2011
1 parent 113ec29 commit 98165d7
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 @@ -1125,14 +1125,14 @@
<CHANNEL.do channel="edugain" verb="testImport"/>
</target>

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

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

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

<target name="flow.switch.import">
<CHANNEL.import channel="switch"/>
</target>
Expand Down
4 changes: 2 additions & 2 deletions mdx/swamid/beans.xml → mdx/se_swamid/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 SWAMID 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="swamidSigningCertificate" class="net.shibboleth.ext.spring.factory.X509CertificateFactoryBean">
<property name="certificateFile">
<bean class="java.io.File">
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/swamid/md-signer.crt"/>
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/se_swamid/md-signer.crt"/>
</bean>
</property>
</bean>
Expand Down
16 changes: 8 additions & 8 deletions mdx/swamid/import.xml → mdx/se_swamid/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 SWAMID.
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 SWAMID-specific beans.
Import channel-specific beans.
-->
<import resource="beans.xml"/>

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

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

<ref bean="standardImportTail"/>

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

0 comments on commit 98165d7

Please sign in to comment.