Skip to content

Commit

Permalink
Rename arnes channel to si_arnes.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Jun 22, 2011
1 parent 2c6c782 commit 31bc710
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1105,10 +1105,6 @@
<CHANNEL.import channel="aaf"/>
</target>

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

<target name="flow.caf.import">
<CHANNEL.import channel="caf"/>
</target>
Expand All @@ -1133,6 +1129,10 @@
<CHANNEL.do channel="edugain" verb="testImport"/>
</target>

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

<target name="flow.swamid.import">
<CHANNEL.import channel="swamid"/>
</target>
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions mdx/arnes/beans.xml → mdx/si_arnes/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 ARNES 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="arnesSigningCertificate" class="net.shibboleth.ext.spring.factory.X509CertificateFactoryBean">
<property name="certificateFile">
<bean class="java.io.File">
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/arnes/aai.arnes.si.crt"/>
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/si_arnes/aai.arnes.si.crt"/>
</bean>
</property>
</bean>
Expand Down
12 changes: 6 additions & 6 deletions mdx/arnes/import.xml → mdx/si_arnes/import.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@
-->
<import resource="beans.xml"/>

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

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

<ref bean="standardImportTail"/>

<ref bean="arnes_serializeImported"/>
<ref bean="si_arnes_serializeImported"/>
</list>
</property>
</bean>
Expand Down

0 comments on commit 31bc710

Please sign in to comment.