Skip to content

Commit

Permalink
Rename incommon channel to us_incommon.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Jun 22, 2011
1 parent 5eca282 commit 113ec29
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 @@ -1117,10 +1117,6 @@
<CHANNEL.import channel="ie_edugate"/>
</target>

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

<target name="flow.edugain.import">
<CHANNEL.import channel="edugain"/>
</target>
Expand All @@ -1145,6 +1141,10 @@
<CHANNEL.import channel="uk_eduserv"/>
</target>

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

<!--
*************************************************
*** ***
Expand Down
4 changes: 2 additions & 2 deletions mdx/incommon/beans.xml → mdx/us_incommon/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 InCommon 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="inCommonSigningCertificate" class="net.shibboleth.ext.spring.factory.X509CertificateFactoryBean">
<property name="certificateFile">
<bean class="java.io.File">
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/incommon/incommon.pem"/>
<constructor-arg value="#{ systemProperties['basedir'] }/mdx/us_incommon/incommon.pem"/>
</bean>
</property>
</bean>
Expand Down
16 changes: 8 additions & 8 deletions mdx/incommon/import.xml → mdx/us_incommon/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 InCommon.
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 InCommon-specific beans.
Import channel-specific beans.
-->
<import resource="beans.xml"/>

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

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

<ref bean="standardImportTail"/>

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

0 comments on commit 113ec29

Please sign in to comment.