Skip to content

Commit

Permalink
Correct at_aconet URLs.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Aug 9, 2013
1 parent ee22275 commit e4d3ed7
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion mdx/at_aconet/beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,22 @@
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">

<!--
Location of various resources.
-->
<!-- production aggregate -->
<bean id="at_aconet_productionAggregate_url" class="java.lang.String">
<constructor-arg value="https://wayf.aco.net/aconet-metadata.xml"/>
</bean>
<!-- test aggregate -->
<bean id="at_aconet_testAggregate_url" class="java.lang.String">
<constructor-arg value="https://wayf.aco.net/md/aconet-metadata.xml"/>
</bean>
<!-- other test aggregate -->
<bean id="at_aconet_otherAggregate_url" class="java.lang.String">
<constructor-arg value="https://wayf.aco.net/md/aconet-interfed-metadata.xml"/>
</bean>

<!--
Fetch the production aggregate.
-->
Expand All @@ -20,7 +36,7 @@
<property name="domResource">
<bean class="net.shibboleth.utilities.java.support.httpclient.HttpResource">
<constructor-arg name="client" ref="httpClient"/>
<constructor-arg name="url" value="http://wayf.aco.net/aconet-aai-metadata.xml"/>
<constructor-arg name="url" ref="at_aconet_productionAggregate_url"/>
</bean>
</property>
</bean>
Expand Down

0 comments on commit e4d3ed7

Please sign in to comment.