Skip to content

Commit

Permalink
Rename aaf channel to au_aaf.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Jun 22, 2011
1 parent 31bc710 commit 21f27ef
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1101,8 +1101,8 @@
*******************************************************************
-->

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

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

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

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

<ref bean="standardImportTail"/>

<ref bean="aaf_serializeImported"/>
<ref bean="au_aaf_serializeImported"/>
</list>
</property>
</bean>
Expand Down

0 comments on commit 21f27ef

Please sign in to comment.