Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Don't use c:-notation with FileSystemResource; Spring uses a differen…
Browse files Browse the repository at this point in the history
…t name for the argument.
  • Loading branch information
iay committed Mar 13, 2014
1 parent 7283927 commit 3f4bfa7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion mdx/common-beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,9 @@
A list of all schema documents that we make common use of in SAML metadata.
-->
<util:list id="schemaResources">
<bean parent="FileSystemResource" c:resourcePath="#{ systemProperties['basedir'] }/xml/incommon-metadata.xsd"/>
<bean parent="FileSystemResource">
<constructor-arg value="#{ systemProperties['basedir'] }/xml/incommon-metadata.xsd"/>
</bean>
<bean parent="FileSystemResource">
<constructor-arg value="#{ systemProperties['basedir'] }/xml/MetadataExchange.xsd"/>
</bean>
Expand Down
8 changes: 6 additions & 2 deletions mdx/validation-beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,9 @@
<bean id="check_hasreginfo" parent="XSLValidationStage"
p:id="check_hasreginfo">
<property name="XSLResource">
<bean parent="FileSystemResource" c:resourcePath="#{ systemProperties['rulesdir'] }/check_hasreginfo.xsl"/>
<bean parent="FileSystemResource">
<constructor-arg value="#{ systemProperties['rulesdir'] }/check_hasreginfo.xsl"/>
</bean>
</property>
</bean>

Expand Down Expand Up @@ -616,7 +618,9 @@
<bean id="check_incmd" parent="XSLValidationStage"
p:id="check_incmd">
<property name="XSLResource">
<bean parent="FileSystemResource" c:resourcePath="#{ systemProperties['rulesdir'] }/check_incmd.xsl"/>
<bean parent="FileSystemResource">
<constructor-arg value="#{ systemProperties['rulesdir'] }/check_incmd.xsl"/>
</bean>
</property>
</bean>

Expand Down

0 comments on commit 3f4bfa7

Please sign in to comment.