Skip to content

Commit

Permalink
Rename caf channel to ca_caf.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Jun 22, 2011
1 parent 21f27ef commit 5eca282
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1105,8 +1105,8 @@
<CHANNEL.import channel="au_aaf"/>
</target>

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

<target name="flow.cz_eduid.import">
Expand Down
4 changes: 2 additions & 2 deletions mdx/caf/beans.xml → mdx/ca_caf/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 CAF 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="cafSigningCertificate" class="net.shibboleth.ext.spring.factory.X509CertificateFactoryBean">
<property name="certificateFile">
<bean class="java.io.File">
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/caf/cafshib_metadata_verify.pem"/>
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/ca_caf/cafshib_metadata_verify.pem"/>
</bean>
</property>
</bean>
Expand Down
File renamed without changes.
14 changes: 7 additions & 7 deletions mdx/caf/import.xml → mdx/ca_caf/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 CAF.
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 CAF-specific beans.
Import channel-specific beans.
-->
<import resource="beans.xml"/>

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

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

<ref bean="standardImportTail"/>

<ref bean="caf_serializeImported"/>
<ref bean="ca_caf_serializeImported"/>
</list>
</property>
</bean>
Expand Down

0 comments on commit 5eca282

Please sign in to comment.