Skip to content

Commit

Permalink
Corrections to int_edugain channel.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Aug 12, 2013
1 parent 672a5b9 commit d81d1f0
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 37 deletions.
54 changes: 27 additions & 27 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -931,15 +931,14 @@
</target>

<target name="flow.int_edugain.testImport">
<CHANNEL.do channel="int_edugain" verb="testImport"/>
<CHANNEL.do channel="int_edugain" verb="importTest"/>
</target>

<target name="flow.test.all"
depends="flow.importEdugain.all, flow.importProduction.all">
<CHANNEL.import channel="au_aaf"/>
<CHANNEL.import channel="eu_clarin"/>
<CHANNEL.import channel="ie_edugate"/>
<CHANNEL.import channel="int_edugain"/>
<CHANNEL.import channel="nl_surfconext"/>
<CHANNEL.import channel="uk_eduserv"/>
<CHANNEL.import channel="us_incommon"/>
Expand Down Expand Up @@ -968,6 +967,7 @@
<CHANNEL.do verb="importProduction" channel="hu_eduid"/>
<CHANNEL.do verb="importProduction" channel="ie_edugate"/>
<CHANNEL.do verb="importProduction" channel="in_infed"/>
<CHANNEL.do verb="importProduction" channel="int_edugain"/>
<CHANNEL.do verb="importProduction" channel="it_idem"/>
<CHANNEL.do verb="importProduction" channel="jp_gakunin"/>
<CHANNEL.do verb="importProduction" channel="lv_laife"/>
Expand Down Expand Up @@ -1006,31 +1006,6 @@
<CHANNEL.do verb="importEdugain" channel="se_swamid"/>
</target>

<!--
flow.verifyEdugain
Verify the eduGAIN entities from a particular channel.
The intention is that this be called within Jenkins
with the channel name passed as a property, e.g.:
ant flow.verifyEdugain -Dchannel=se_swamid
-->
<target name="flow.verifyEdugain">
<CHANNEL.do verb="verifyEdugain" channel="${channel}"/>
</target>

<!--
flow.verifyEdugain.all
Verify the eduGAIN entities from all channels with this ability.
-->
<target name="flow.verifyEdugain.all">
<CHANNEL.do verb="verifyEdugain" channel="at_aconet"/>
<CHANNEL.do verb="verifyEdugain" channel="se_swamid"/>
</target>

<!--
flow.importEdugainRaw.all
Expand Down Expand Up @@ -1058,6 +1033,31 @@
<CHANNEL.do verb="importEdugainRaw" channel="se_swamid"/>
</target>

<!--
flow.verifyEdugain
Verify the eduGAIN entities from a particular channel.
The intention is that this be called within Jenkins
with the channel name passed as a property, e.g.:
ant flow.verifyEdugain -Dchannel=se_swamid
-->
<target name="flow.verifyEdugain">
<CHANNEL.do verb="verifyEdugain" channel="${channel}"/>
</target>

<!--
flow.verifyEdugain.all
Verify the eduGAIN entities from all channels with this ability.
-->
<target name="flow.verifyEdugain.all">
<CHANNEL.do verb="verifyEdugain" channel="at_aconet"/>
<CHANNEL.do verb="verifyEdugain" channel="se_swamid"/>
</target>

<!--
flow.importRaw.all
Expand Down
6 changes: 3 additions & 3 deletions mdx/int_edugain/beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@
</bean>

<!--
Fetch the exported entities as a collection.
Fetch the production entities as a collection.
-->
<bean id="int_edugain_exportedEntities" parent="CompositeStage"
p:id="int_edugain_exportedEntities">
<bean id="int_edugain_productionEntities" parent="CompositeStage"
p:id="int_edugain_productionEntities">
<property name="composedStages">
<list>
<ref bean="int_edugain_productionAggregate"/>
Expand Down
14 changes: 7 additions & 7 deletions mdx/int_edugain/verbs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,20 @@
</property>
</bean>

<bean id="import" parent="SimplePipeline"
p:id="import">
<bean id="importProduction" parent="SimplePipeline"
p:id="importProduction">
<property name="stages">
<list>
<ref bean="int_edugain_exportedEntities"/>
<ref bean="int_edugain_productionEntities"/>
<ref bean="standardImportActions"/>
<ref bean="standardImportTail"/>
<ref bean="serializeImported"/>
</list>
</property>
</bean>

<bean id="importRaw" parent="SimplePipeline"
p:id="importRaw">
<bean id="importProductionRaw" parent="SimplePipeline"
p:id="importProductionRaw">
<property name="stages">
<list>
<ref bean="int_edugain_productionAggregate"/>
Expand All @@ -53,8 +53,8 @@
</property>
</bean>

<bean id="testImport" parent="SimplePipeline"
p:id="testImport">
<bean id="importTest" parent="SimplePipeline"
p:id="importTest">
<property name="stages">
<list>
<ref bean="int_edugain_testEntities"/>
Expand Down

0 comments on commit d81d1f0

Please sign in to comment.