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

Commit

Permalink
Cope with future name change to Dom(DOM)DocumentFactoryBean.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Jun 5, 2014
1 parent 333436d commit 6487773
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions mdx/common-beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,10 @@

<!-- *** Parent beans for Shibboleth spring-extensions factory beans. *** -->

<!-- anticipates name change in spring-extensions bundled with MDA 0.9 -->
<bean id="DOMDocumentFactoryBean" abstract="true"
class="net.shibboleth.ext.spring.factory.DomDocumentFactoryBean"/>

<bean id="PrivateKeyFactoryBean" abstract="true"
class="net.shibboleth.ext.spring.factory.PrivateKeyFactoryBean"/>

Expand Down
4 changes: 2 additions & 2 deletions mdx/uk/beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
This bean contains the contents of the members.xml file as a DOM Document.
-->
<bean id="uk_membersDocument" class="net.shibboleth.ext.spring.factory.DomDocumentFactoryBean">
<bean id="uk_membersDocument" parent="DOMDocumentFactoryBean">
<property name="documentResource" ref="uk_membersResource"/>
<property name="parserPool" ref="parserPool"/>
</bean>
Expand Down Expand Up @@ -322,7 +322,7 @@
This bean contains the contents of the trust roots file as a DOM Document.
-->
<bean id="uk_trustRootsDocument" class="net.shibboleth.ext.spring.factory.DomDocumentFactoryBean">
<bean id="uk_trustRootsDocument" parent="DOMDocumentFactoryBean">
<property name="parserPool" ref="parserPool"/>
<property name="documentResource">
<bean parent="FileSystemResource">
Expand Down

0 comments on commit 6487773

Please sign in to comment.