Skip to content

Commit

Permalink
Make consistent use of the String abstract bean
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed May 1, 2017
1 parent ef717ef commit d33502e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions mdx/at_aconet/beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
Location of various resources.
-->
<!-- ACOnet-registered entities without interfederation -->
<bean id="at_aconet_registrarAggregate_url" class="java.lang.String">
<bean id="at_aconet_registrarAggregate_url" parent="String">
<constructor-arg value="http://eduid.at/md/aconet-registered.xml"/>
</bean>
<!-- eduGAIN export aggregate -->
<bean id="at_aconet_edugainAggregate_url" class="java.lang.String">
<bean id="at_aconet_edugainAggregate_url" parent="String">
<constructor-arg value="http://eduid.at/md/upstream-edugain.xml"/>
</bean>

Expand Down
2 changes: 1 addition & 1 deletion mdx/int_cobweb/beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<!--
Location of various resources.
-->
<bean id="int_cobweb_productionAggregate_url" class="java.lang.String">
<bean id="int_cobweb_productionAggregate_url" parent="String">
<constructor-arg value="https://cobweb.edina.ac.uk/metadata/cobweb-metadata.xml"/>
</bean>

Expand Down
4 changes: 2 additions & 2 deletions mdx/int_edugain/beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
Location of various resources.
-->
<!-- production aggregate -->
<bean id="int_edugain_productionAggregate_url" class="java.lang.String">
<bean id="int_edugain_productionAggregate_url" parent="String">
<constructor-arg value="http://mds.edugain.org/"/>
</bean>
<!-- test aggregate -->
<bean id="int_edugain_testAggregate_url" class="java.lang.String">
<bean id="int_edugain_testAggregate_url" parent="String">
<constructor-arg value="http://mds-test.edugain.org"/>
</bean>

Expand Down
4 changes: 2 additions & 2 deletions mdx/uk/beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<!--
Location of various resources.
-->
<bean id="uk_productionAggregate_url" class="java.lang.String">
<bean id="uk_productionAggregate_url" parent="String">
<constructor-arg value="http://metadata.ukfederation.org.uk/ukfederation-metadata.xml"/>
</bean>
<bean id="uk_exportAggregate_url" class="java.lang.String">
<bean id="uk_exportAggregate_url" parent="String">
<constructor-arg value="http://metadata.ukfederation.org.uk/ukfederation-export.xml"/>
</bean>

Expand Down
8 changes: 4 additions & 4 deletions mdx/us_incommon/beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
<!--
Location of various resources.
-->
<bean id="us_incommon_productionAggregate_url" class="java.lang.String">
<bean id="us_incommon_productionAggregate_url" parent="String">
<constructor-arg value="http://md.incommon.org/InCommon/InCommon-metadata.xml"/>
</bean>
<bean id="us_incommon_fallbackAggregate_url" class="java.lang.String">
<bean id="us_incommon_fallbackAggregate_url" parent="String">
<constructor-arg value="http://md.incommon.org/InCommon/InCommon-metadata-fallback.xml"/>
</bean>
<bean id="us_incommon_previewAggregate_url" class="java.lang.String">
<bean id="us_incommon_previewAggregate_url" parent="String">
<constructor-arg value="http://md.incommon.org/InCommon/InCommon-metadata-preview.xml"/>
</bean>
<bean id="us_incommon_legacyAggregate_url" class="java.lang.String">
<bean id="us_incommon_legacyAggregate_url" parent="String">
<constructor-arg value="http://wayf.incommonfederation.org/InCommon/InCommon-metadata.xml"/>
</bean>

Expand Down

0 comments on commit d33502e

Please sign in to comment.