[java-identity-provider] branch main updated: IDP-1723 - Using RelyingPartyByGroup triggers dynamic metadata lookups
Scott Cantor
cantor.2 at osu.edu
Tue Dec 15 18:45:09 UTC 2020
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=fbfebc25cb290ed74509de4199a6ab9e15f80c48
The following commit(s) were added to refs/heads/main by this push:
new fbfebc25c IDP-1723 - Using RelyingPartyByGroup triggers dynamic metadata lookups
fbfebc25c is described below
commit fbfebc25cb290ed74509de4199a6ab9e15f80c48
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Dec 15 13:45:06 2020 -0500
IDP-1723 - Using RelyingPartyByGroup triggers dynamic metadata lookups
https://issues.shibboleth.net/jira/browse/IDP-1723
---
.../resources/net/shibboleth/idp/conf/relying-party-mddriven.xml | 5 +++++
.../resources/net/shibboleth/idp/conf/relying-party-system.xml | 8 +++++++-
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/relying-party-mddriven.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/relying-party-mddriven.xml
index afdf3609e..be1d2a8cd 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/relying-party-mddriven.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/relying-party-mddriven.xml
@@ -50,6 +50,11 @@
class="net.shibboleth.idp.saml.relyingparty.impl.RelyingPartyConfigurationSupport" factory-method="byGroup"
c:resolver-ref="shibboleth.MetadataResolver" />
+ <bean id="RelyingPartyByEntitiesDescriptor.MDDriven" abstract="true" parent="RelyingParty.MDDriven"
+ class="net.shibboleth.idp.saml.relyingparty.impl.RelyingPartyConfigurationSupport" factory-method="byGroup">
+ <constructor-arg name="resolver"><null /></constructor-arg>
+ </bean>
+
<bean id="RelyingPartyByTag.MDDriven" parent="RelyingParty.MDDriven" abstract="true"
class="net.shibboleth.idp.saml.relyingparty.impl.RelyingPartyConfigurationSupport" factory-method="byTag"
c:trim="false" c:matchAll="false" />
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/relying-party-system.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/relying-party-system.xml
index 3b0cc4173..d394a29e2 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/relying-party-system.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/relying-party-system.xml
@@ -33,11 +33,17 @@
<bean id="RelyingPartyByName" abstract="true" parent="RelyingParty"
class="net.shibboleth.idp.saml.relyingparty.impl.RelyingPartyConfigurationSupport" factory-method="byName" />
- <!-- Parent bean for RelyingParty overrides based on activation by group. -->
+ <!-- Parent bean for RelyingParty overrides based on activation by group or SAML affiliation. -->
<bean id="RelyingPartyByGroup" abstract="true" parent="RelyingParty"
class="net.shibboleth.idp.saml.relyingparty.impl.RelyingPartyConfigurationSupport" factory-method="byGroup"
c:resolver-ref="shibboleth.MetadataResolver" />
+ <!-- Parent bean for RelyingParty overrides based on activation by local containment only. -->
+ <bean id="RelyingPartyByEntitiesDescriptor" abstract="true" parent="RelyingParty"
+ class="net.shibboleth.idp.saml.relyingparty.impl.RelyingPartyConfigurationSupport" factory-method="byGroup">
+ <constructor-arg name="resolver"><null /></constructor-arg>
+ </bean>
+
<!-- Parent bean for RelyingParty overrides based on activation by tag. -->
<bean id="RelyingPartyByTag" abstract="true" parent="RelyingParty"
class="net.shibboleth.idp.saml.relyingparty.impl.RelyingPartyConfigurationSupport" factory-method="byTag"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list