[java-metadata-aggregator] branch main updated: MDA-293 - Add parent bean definition for IdentifiableBeanPostProcessor
Ian Young
ian at iay.org.uk
Thu Jun 8 10:27:49 UTC 2023
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch main
in repository java-metadata-aggregator.
View the commit online:
http://git.shibboleth.net/view/?p=java-metadata-aggregator.git;a=commit;h=b0dd6759fb40a306ccdad2342833c7127e2ec1d0
The following commit(s) were added to refs/heads/main by this push:
new b0dd675 MDA-293 - Add parent bean definition for IdentifiableBeanPostProcessor
b0dd675 is described below
commit b0dd6759fb40a306ccdad2342833c7127e2ec1d0
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Thu Jun 8 11:27:46 2023 +0100
MDA-293 - Add parent bean definition for IdentifiableBeanPostProcessor
https://shibboleth.atlassian.net/browse/MDA-293
---
doc/wiki/discofeed.xml | 3 +--
.../src/main/resources/net/shibboleth/metadata/beans.xml | 11 +++++++++++
.../saml/shibboleth/ScopeValidationStageLitmusTest-config.xml | 2 +-
3 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/doc/wiki/discofeed.xml b/doc/wiki/discofeed.xml
index b821ae9..b479db5 100644
--- a/doc/wiki/discofeed.xml
+++ b/doc/wiki/discofeed.xml
@@ -15,8 +15,7 @@
<import resource="classpath:net/shibboleth/metadata/beans.xml"/>
<!-- Default Shibboleth component bean id property from Spring bean id -->
- <bean class="net.shibboleth.shared.spring.config.IdentifiableBeanPostProcessor"
- lazy-init="false"/>
+ <bean parent="mda.IdentifiableBeanPostProcessor" lazy-init="false"/>
<bean id="DiscoFeed" parent="mda.SimplePipeline">
<property name="stages">
diff --git a/mda-framework/src/main/resources/net/shibboleth/metadata/beans.xml b/mda-framework/src/main/resources/net/shibboleth/metadata/beans.xml
index 34f81b9..432f898 100644
--- a/mda-framework/src/main/resources/net/shibboleth/metadata/beans.xml
+++ b/mda-framework/src/main/resources/net/shibboleth/metadata/beans.xml
@@ -360,6 +360,17 @@
<bean id="mda.X509RSAOpenSSLBlacklistValidator" abstract="true" parent="mda.validator_parent"
class="net.shibboleth.metadata.validate.x509.X509RSAOpenSSLBlacklistValidator"/>
+ <!--
+ ***********************************************************
+ *** ***
+ *** O U T - O F - M O D U L E C O M P O N E N T S ***
+ *** ***
+ ***********************************************************
+ -->
+
+ <bean id="mda.IdentifiableBeanPostProcessor" abstract="true"
+ class="net.shibboleth.shared.spring.config.IdentifiableBeanPostProcessor"/>
+
<!--
***************************************************
*** ***
diff --git a/mda-framework/src/test/resources/net/shibboleth/metadata/dom/saml/shibboleth/ScopeValidationStageLitmusTest-config.xml b/mda-framework/src/test/resources/net/shibboleth/metadata/dom/saml/shibboleth/ScopeValidationStageLitmusTest-config.xml
index 8ab948f..3a2ff9d 100644
--- a/mda-framework/src/test/resources/net/shibboleth/metadata/dom/saml/shibboleth/ScopeValidationStageLitmusTest-config.xml
+++ b/mda-framework/src/test/resources/net/shibboleth/metadata/dom/saml/shibboleth/ScopeValidationStageLitmusTest-config.xml
@@ -10,7 +10,7 @@
<import resource="classpath:net/shibboleth/metadata/beans.xml"/>
- <bean class="net.shibboleth.shared.spring.config.IdentifiableBeanPostProcessor"/>
+ <bean parent="mda.IdentifiableBeanPostProcessor"/>
<bean id="litmusTest" parent="mda.ScopeValidationStage">
<property name="validators">
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list